diff --git a/src/azure-firewall/HISTORY.rst b/src/azure-firewall/HISTORY.rst index 7e1e9d89065..cbc9b1111b0 100644 --- a/src/azure-firewall/HISTORY.rst +++ b/src/azure-firewall/HISTORY.rst @@ -2,6 +2,11 @@ Release History =============== + +1.2.1 +++++++ +* Remove ADAL dependencies + 1.2.0 ++++++ * `network firewall policy rule-collection-group collection rule add/update"`: Add parameter `--http-headers-to-insert` diff --git a/src/azure-firewall/azext_firewall/_exception_handler.py b/src/azure-firewall/azext_firewall/_exception_handler.py index fcd2e326e25..d89dc9e4bc0 100644 --- a/src/azure-firewall/azext_firewall/_exception_handler.py +++ b/src/azure-firewall/azext_firewall/_exception_handler.py @@ -5,8 +5,8 @@ def exception_handler(ex): - from msrestazure.azure_exceptions import CloudError - if isinstance(ex, CloudError): + from azure.core.exceptions import HttpResponseError + if isinstance(ex, HttpResponseError): text = getattr(ex.response, 'text', '') if len(ex.args) == 1 and isinstance(ex.args[0], str): ex.args = tuple([ex.args[0] + text]) diff --git a/src/azure-firewall/azext_firewall/_validators.py b/src/azure-firewall/azext_firewall/_validators.py index da05e2035f8..494867479c6 100644 --- a/src/azure-firewall/azext_firewall/_validators.py +++ b/src/azure-firewall/azext_firewall/_validators.py @@ -22,7 +22,7 @@ def validate_application_rule_protocols(namespace): def validate_ip_groups(cmd, namespace): - from msrestazure.tools import is_valid_resource_id, resource_id + from azure.mgmt.core.tools import is_valid_resource_id, resource_id def _validate_name_or_id(ip_group, subscription): # determine if public_ip_address is name or ID @@ -46,7 +46,7 @@ def _validate_name_or_id(ip_group, subscription): def get_public_ip_validator(): """ Retrieves a validator for public IP address. Accepting all defaults will perform a check for an existing name or ID with no ARM-required -type parameter. """ - from msrestazure.tools import is_valid_resource_id, resource_id + from azure.mgmt.core.tools import is_valid_resource_id, resource_id def simple_validator(cmd, namespace): if namespace.public_ip_address: @@ -72,7 +72,7 @@ def _validate_name_or_id(public_ip): def get_subnet_validator(): - from msrestazure.tools import is_valid_resource_id, resource_id + from azure.mgmt.core.tools import is_valid_resource_id, resource_id def simple_validator(cmd, namespace): if namespace.virtual_network_name is None: @@ -96,7 +96,7 @@ def simple_validator(cmd, namespace): def get_management_subnet_validator(): - from msrestazure.tools import is_valid_resource_id, resource_id + from azure.mgmt.core.tools import is_valid_resource_id, resource_id from knack.util import CLIError def simple_validator(cmd, namespace): @@ -130,7 +130,7 @@ def simple_validator(cmd, namespace): def get_management_public_ip_validator(): """ Retrieves a validator for public IP address. Accepting all defaults will perform a check for an existing name or ID with no ARM-required -type parameter. """ - from msrestazure.tools import is_valid_resource_id, resource_id + from azure.mgmt.core.tools import is_valid_resource_id, resource_id def simple_validator(cmd, namespace): if namespace.management_public_ip_address: @@ -156,7 +156,7 @@ def _validate_name_or_id(public_ip): def validate_firewall_policy(cmd, namespace): - from msrestazure.tools import is_valid_resource_id, resource_id + from azure.mgmt.core.tools import is_valid_resource_id, resource_id if hasattr(namespace, 'base_policy') and namespace.base_policy is not None: if not is_valid_resource_id(namespace.base_policy): @@ -178,7 +178,7 @@ def validate_firewall_policy(cmd, namespace): def validate_virtual_hub(cmd, namespace): - from msrestazure.tools import is_valid_resource_id, resource_id + from azure.mgmt.core.tools import is_valid_resource_id, resource_id if hasattr(namespace, 'virtual_hub') and namespace.virtual_hub is not None: diff --git a/src/azure-firewall/azext_firewall/custom.py b/src/azure-firewall/azext_firewall/custom.py index bea8fcb87d1..e740d7baf56 100644 --- a/src/azure-firewall/azext_firewall/custom.py +++ b/src/azure-firewall/azext_firewall/custom.py @@ -13,7 +13,7 @@ from azure.cli.core.util import sdk_no_wait from azure.cli.core.azclierror import UserFault, ServiceError, ValidationError, ArgumentUsageError from azure.cli.core.commands.client_factory import get_subscription_id -from msrestazure.tools import resource_id +from azure.mgmt.core.tools import resource_id from ._client_factory import network_client_factory from .aaz.latest.network.firewall import Create as _AzureFirewallCreate, Update as _AzureFirewallUpdate, \ Show as _AzureFirewallShow diff --git a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_ip_config.yaml b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_ip_config.yaml index 47357fa0688..203f3977c16 100644 --- a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_ip_config.yaml +++ b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_ip_config.yaml @@ -13,31 +13,35 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_ip_config000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001","name":"cli_test_azure_firewall_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_azure_firewall_ip_config","date":"2023-08-08T02:16:06Z","module":"azure-firewall"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001","name":"cli_test_azure_firewall_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_azure_firewall_ip_config","date":"2024-11-04T02:30:34Z","module":"azure-firewall","Creator":"v-ruih@microsoft.com","DateCreated":"2024-11-04T02:30:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '421' + - '491' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:14 GMT + - Mon, 04 Nov 2024 02:30:45 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 5367223A88394C9684ABF6499A907F3E Ref B: MAA201060514045 Ref C: 2024-11-04T02:30:44Z' status: code: 200 message: OK @@ -60,48 +64,43 @@ interactions: ParameterSetName: - -g -n 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\"\ - ,\r\n \"etag\": \"W/\\\"15985fc0-9208-4d8e-8364-446255658061\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ - \ \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\ - \r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\"\ - : {},\r\n \"ipConfigurations\": [],\r\n \"networkRuleCollections\":\ - \ [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\"\ - : []\r\n }\r\n}" + string: '{"name":"af1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1","etag":"W/\"67b3f328-5339-4aab-b94c-40d33abdf5cc\"","type":"Microsoft.Network/azureFirewalls","location":"westus","properties":{"provisioningState":"Updating","sku":{"name":"AZFW_VNet","tier":"Standard"},"threatIntelMode":"Alert","additionalProperties":{},"ipConfigurations":[],"networkRuleCollections":[],"applicationRuleCollections":[],"natRuleCollections":[]}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/353fc4da-ee4d-45bc-b4f8-1cfa6505f4c9?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9d2cf66e-82a2-4341-b433-c1c5fa9c352c?api-version=2022-01-01&t=638662842498010587&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=WbfntNTHoBTvp_UStLkYc43ekM9oLV6QU56xIR7LsWu9_bYshaSJHL92CP6pRbeG2E_hYFEe_wABQaRB7lNKuRZH2MHeOkwHFGfh6g9S_muT0K1pXW3z8n5a7Ht4ovDC8lMNRFJKFhER_OV4AUW7FhHGbKY4s78I3pIxJTq9C9Y6VqgIHdDPGEjMQYhcGgQyBhpLKGZBPiOarYJbRWe1dpupkE69-6LH0jB8DDF-eQGq350ud5UZNllESiu0AqF5X0Dzw3T2zb-tfRkWeOT2OoYEAk5B-GyOBi8VOJyzSH6-ayczUs2eeOhzkZbthnUzBJI1PcclC3iEdfmN7G-t7A&h=pbetfs6KMX8vpcQdsPmIOY80fHnRU367p2TneKJTdqo cache-control: - no-cache content-length: - - '654' + - '538' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:22 GMT + - Mon, 04 Nov 2024 02:30:49 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 30244199-7b76-4e81-ae8a-bd8fb98614e2 + - c8deca9d-ed8b-43ce-8cd0-dcc5b48931ea + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '199' + x-msedge-ref: + - 'Ref A: 49EFE603C8F94D58990C0E62D2480CA4 Ref B: MAA201060516019 Ref C: 2024-11-04T02:30:46Z' status: code: 201 message: Created @@ -119,38 +118,37 @@ interactions: ParameterSetName: - -g -n 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/353fc4da-ee4d-45bc-b4f8-1cfa6505f4c9?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9d2cf66e-82a2-4341-b433-c1c5fa9c352c?api-version=2022-01-01&t=638662842498010587&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=WbfntNTHoBTvp_UStLkYc43ekM9oLV6QU56xIR7LsWu9_bYshaSJHL92CP6pRbeG2E_hYFEe_wABQaRB7lNKuRZH2MHeOkwHFGfh6g9S_muT0K1pXW3z8n5a7Ht4ovDC8lMNRFJKFhER_OV4AUW7FhHGbKY4s78I3pIxJTq9C9Y6VqgIHdDPGEjMQYhcGgQyBhpLKGZBPiOarYJbRWe1dpupkE69-6LH0jB8DDF-eQGq350ud5UZNllESiu0AqF5X0Dzw3T2zb-tfRkWeOT2OoYEAk5B-GyOBi8VOJyzSH6-ayczUs2eeOhzkZbthnUzBJI1PcclC3iEdfmN7G-t7A&h=pbetfs6KMX8vpcQdsPmIOY80fHnRU367p2TneKJTdqo response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:22 GMT + - Mon, 04 Nov 2024 02:30:50 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bf2a2e56-2283-4a38-99f9-122a5f50cf06 + - da2341de-3ff8-4d17-bc57-b2c59353c19f + x-ms-ratelimit-remaining-subscription-global-reads: + - '3747' + x-msedge-ref: + - 'Ref A: 0C8D8E989A924FBE8D3C25C98BCF563E Ref B: MAA201060516019 Ref C: 2024-11-04T02:30:49Z' status: code: 200 message: OK @@ -168,48 +166,39 @@ interactions: ParameterSetName: - -g -n 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\"\ - ,\r\n \"etag\": \"W/\\\"ea4c8d69-2b21-4204-9df6-a26ea952b7d6\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\ - \r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\"\ - : {},\r\n \"ipConfigurations\": [],\r\n \"networkRuleCollections\":\ - \ [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\"\ - : []\r\n }\r\n}" + string: '{"name":"af1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1","etag":"W/\"6d21e9f2-e5aa-45ed-bed9-44822c840c3a\"","type":"Microsoft.Network/azureFirewalls","location":"westus","properties":{"provisioningState":"Succeeded","sku":{"name":"AZFW_VNet","tier":"Standard"},"threatIntelMode":"Alert","additionalProperties":{},"ipConfigurations":[],"networkRuleCollections":[],"applicationRuleCollections":[],"natRuleCollections":[]}}' headers: cache-control: - no-cache content-length: - - '655' + - '539' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:22 GMT + - Mon, 04 Nov 2024 02:30:50 GMT etag: - - W/"ea4c8d69-2b21-4204-9df6-a26ea952b7d6" + - W/"6d21e9f2-e5aa-45ed-bed9-44822c840c3a" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 48a6127d-5688-41f8-961e-6dae3546cf11 + - 3f69c627-8e80-40f7-bf9e-c8d6bd133256 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3748' + x-msedge-ref: + - 'Ref A: 7466F5A660AE464FB577292016F896A8 Ref B: MAA201060516019 Ref C: 2024-11-04T02:30:50Z' status: code: 200 message: OK @@ -227,31 +216,35 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_ip_config000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001","name":"cli_test_azure_firewall_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_azure_firewall_ip_config","date":"2023-08-08T02:16:06Z","module":"azure-firewall"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001","name":"cli_test_azure_firewall_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_azure_firewall_ip_config","date":"2024-11-04T02:30:34Z","module":"azure-firewall","Creator":"v-ruih@microsoft.com","DateCreated":"2024-11-04T02:30:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '421' + - '491' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:23 GMT + - Mon, 04 Nov 2024 02:30:53 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 8B06DBE271D34E04877E4D2FEE3EA004 Ref B: MAA201060515029 Ref C: 2024-11-04T02:30:52Z' status: code: 200 message: OK @@ -274,49 +267,43 @@ interactions: ParameterSetName: - -g -n --sku 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2022-11-01 response: body: - string: "{\r\n \"name\": \"pubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip\"\ - ,\r\n \"etag\": \"W/\\\"12022ab0-1191-4e69-b2a9-4985a4015363\\\"\",\r\n \ - \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Updating\",\r\n \"resourceGuid\": \"1583b452-3f3c-4d3f-b1c6-bcec41e9790a\"\ - ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\ - : \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\ - \n \"ddosSettings\": {\r\n \"protectionMode\": \"VirtualNetworkInherited\"\ - \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\ - \n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ - \r\n }\r\n}" + string: '{"name":"pubip","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip","etag":"W/\"ac58890b-8fdb-4182-9ca3-888c75eee683\"","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"3d87a4f9-4b19-4d4d-b0e5-ee49cdb31b04","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a476233a-824b-4919-b349-5bddfa75ca9b?api-version=2022-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08b84a47-6a56-4b53-bb94-0b4d8ecb3e26?api-version=2022-11-01&t=638662842577007415&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=qnCXgXGwnAaevnmV1ZU0dW4LW9NMYTFSkoYpQWJ2zieQD1OIc98wE2uFo4QdkutvMu21AH2GL6p_wfwP5zVNMvfJEVGAuuji61yai4HA055kC3ycvItSiFLzqIWfCP8UuHKiYGV7koEN0uxBVakps-S7rVz1GItfPLAsvYYHG7waJ8Buq4aAVgzKt5lNBuVYE7e3DbEzIAeR9cFso6OCcbHheI9OOf7uXKffby87bP_OUHLDWWAC9O9iTOlH9doDyRfC6-1Zf8qVi6TZA9KwPX00ISmjbCxg7aa3ufhJDgDRIajKuJIe0XKIHntlee_72r4C0_A53oquvas5U9Indg&h=YRtgiRelEcn57cO2nEgZp9Ey9Zoz5uxmUEwqAeq2Ieo cache-control: - no-cache content-length: - - '731' + - '608' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:28 GMT + - Mon, 04 Nov 2024 02:30:57 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f91e83b7-1855-4020-a40c-230697d6059c + - 4a7691ab-0985-46ec-b3c2-c07ae538cd3c + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '199' + x-msedge-ref: + - 'Ref A: 05DB51B8BE434E7CBA057069E156FA7F Ref B: MAA201060514011 Ref C: 2024-11-04T02:30:54Z' status: code: 201 message: Created @@ -334,38 +321,37 @@ interactions: ParameterSetName: - -g -n --sku 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a476233a-824b-4919-b349-5bddfa75ca9b?api-version=2022-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/08b84a47-6a56-4b53-bb94-0b4d8ecb3e26?api-version=2022-11-01&t=638662842577007415&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=qnCXgXGwnAaevnmV1ZU0dW4LW9NMYTFSkoYpQWJ2zieQD1OIc98wE2uFo4QdkutvMu21AH2GL6p_wfwP5zVNMvfJEVGAuuji61yai4HA055kC3ycvItSiFLzqIWfCP8UuHKiYGV7koEN0uxBVakps-S7rVz1GItfPLAsvYYHG7waJ8Buq4aAVgzKt5lNBuVYE7e3DbEzIAeR9cFso6OCcbHheI9OOf7uXKffby87bP_OUHLDWWAC9O9iTOlH9doDyRfC6-1Zf8qVi6TZA9KwPX00ISmjbCxg7aa3ufhJDgDRIajKuJIe0XKIHntlee_72r4C0_A53oquvas5U9Indg&h=YRtgiRelEcn57cO2nEgZp9Ey9Zoz5uxmUEwqAeq2Ieo response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:29 GMT + - Mon, 04 Nov 2024 02:30:58 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b90aa2a6-b845-4781-954c-6d99abee8315 + - e968b69b-6273-434a-be84-f74dcf0e76fe + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 0D7FA8F1C0D246D6AA2051816442D682 Ref B: MAA201060514011 Ref C: 2024-11-04T02:30:57Z' status: code: 200 message: OK @@ -383,49 +369,39 @@ interactions: ParameterSetName: - -g -n --sku 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2022-11-01 response: body: - string: "{\r\n \"name\": \"pubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip\"\ - ,\r\n \"etag\": \"W/\\\"5e7be6b9-2a51-419f-946b-fd1301d615fe\\\"\",\r\n \ - \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"1583b452-3f3c-4d3f-b1c6-bcec41e9790a\"\ - ,\r\n \"ipAddress\": \"20.237.211.205\",\r\n \"publicIPAddressVersion\"\ - : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"ipTags\": [],\r\n \"ddosSettings\": {\r\n \"protectionMode\"\ - : \"VirtualNetworkInherited\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\ - ,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ - \r\n }\r\n}" + string: '{"name":"pubip","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip","etag":"W/\"8a5fc49a-c781-4dc1-9bab-ffce1c53f03a\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"3d87a4f9-4b19-4d4d-b0e5-ee49cdb31b04","ipAddress":"20.189.161.49","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '768' + - '637' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:29 GMT + - Mon, 04 Nov 2024 02:30:59 GMT etag: - - W/"5e7be6b9-2a51-419f-946b-fd1301d615fe" + - W/"8a5fc49a-c781-4dc1-9bab-ffce1c53f03a" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 32bcfded-0e4d-49b6-bd10-8973b97be16f + - c483cc6a-bf3e-4f74-b37b-c06b1c6835ac + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 6B3D59766E714C6FB427632005F7FB0B Ref B: MAA201060514011 Ref C: 2024-11-04T02:30:58Z' status: code: 200 message: OK @@ -443,31 +419,35 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_ip_config000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001","name":"cli_test_azure_firewall_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_azure_firewall_ip_config","date":"2023-08-08T02:16:06Z","module":"azure-firewall"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001","name":"cli_test_azure_firewall_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_azure_firewall_ip_config","date":"2024-11-04T02:30:34Z","module":"azure-firewall","Creator":"v-ruih@microsoft.com","DateCreated":"2024-11-04T02:30:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '421' + - '491' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:30 GMT + - Mon, 04 Nov 2024 02:31:00 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 3CB696DC19DA45BD8DB1EC2692759787 Ref B: MAA201060515051 Ref C: 2024-11-04T02:30:59Z' status: code: 200 message: OK @@ -490,49 +470,43 @@ interactions: ParameterSetName: - -g -n --sku 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2022-11-01 response: body: - string: "{\r\n \"name\": \"pubip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\ - ,\r\n \"etag\": \"W/\\\"7c5e3c6e-ecd9-4e7f-8428-f83746d86912\\\"\",\r\n \ - \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Updating\",\r\n \"resourceGuid\": \"4a20ea92-c23d-48ed-bd85-3580e0688eab\"\ - ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\ - : \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\ - \n \"ddosSettings\": {\r\n \"protectionMode\": \"VirtualNetworkInherited\"\ - \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\ - \n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ - \r\n }\r\n}" + string: '{"name":"pubip2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2","etag":"W/\"5a7a1b3f-1b27-4f58-a94f-78d06fe87386\"","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"db277329-c315-4e55-b091-a650c74989cd","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7910ad81-15fa-4669-8579-c4c437fb6b04?api-version=2022-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bc5c82cc-f2f0-485c-b380-5aae56400c9a?api-version=2022-11-01&t=638662842655955312&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=s7R-HTrrQVyYY4TI1llHpg_9OfzuEc4bHJAjD0zCuCTb4DVDKcpCzzqdbgtkTik_NoznuazU1FA4NEtH6Mkj1FQn2Z0Xcwh_43tCtCJ5SSqITbqRNU6CZoDWYpk2Gps0P81OH2sApIB1kinICqQ3p0T2M0cwtg8FYDLL1bgEVI90ow8-ck0VlHFv2zCyhpNobJ69bxoGjhBYLel8SJEfAveIXphu3GdjhXg54xcAOeT3JAMYKXDHhjTsn8CJmDyvs-5gvuUQJ232xSlSWM5xzEun_D5Bs5Tb7yjd5ID093xwdsV4TAgfcEpI87x3SFevnx5CvB7wrhs7X3S3fUSuhg&h=trP6u_UPwBYgcC1wntmWLVSKFbfBB6_IHrYYMolDpS8 cache-control: - no-cache content-length: - - '733' + - '610' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:37 GMT + - Mon, 04 Nov 2024 02:31:05 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c9ece0ca-c7e7-420c-b4a6-fc5e5d695e63 + - 8e47abb1-32b1-498a-b1db-fd5acd1e5dc2 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '199' + x-msedge-ref: + - 'Ref A: 6DEBBD9EF0784C07BBB6621E2081A683 Ref B: MAA201060514025 Ref C: 2024-11-04T02:31:01Z' status: code: 201 message: Created @@ -550,38 +524,37 @@ interactions: ParameterSetName: - -g -n --sku 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7910ad81-15fa-4669-8579-c4c437fb6b04?api-version=2022-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bc5c82cc-f2f0-485c-b380-5aae56400c9a?api-version=2022-11-01&t=638662842655955312&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=s7R-HTrrQVyYY4TI1llHpg_9OfzuEc4bHJAjD0zCuCTb4DVDKcpCzzqdbgtkTik_NoznuazU1FA4NEtH6Mkj1FQn2Z0Xcwh_43tCtCJ5SSqITbqRNU6CZoDWYpk2Gps0P81OH2sApIB1kinICqQ3p0T2M0cwtg8FYDLL1bgEVI90ow8-ck0VlHFv2zCyhpNobJ69bxoGjhBYLel8SJEfAveIXphu3GdjhXg54xcAOeT3JAMYKXDHhjTsn8CJmDyvs-5gvuUQJ232xSlSWM5xzEun_D5Bs5Tb7yjd5ID093xwdsV4TAgfcEpI87x3SFevnx5CvB7wrhs7X3S3fUSuhg&h=trP6u_UPwBYgcC1wntmWLVSKFbfBB6_IHrYYMolDpS8 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:37 GMT + - Mon, 04 Nov 2024 02:31:05 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cc843add-2bca-4a11-8070-836d7d74b460 + - c123031b-df9d-4aa5-a949-dfae4b5ba532 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 4506A9E7607041AEABB19B3917CE4755 Ref B: MAA201060514025 Ref C: 2024-11-04T02:31:05Z' status: code: 200 message: OK @@ -599,49 +572,39 @@ interactions: ParameterSetName: - -g -n --sku 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2022-11-01 response: body: - string: "{\r\n \"name\": \"pubip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2\"\ - ,\r\n \"etag\": \"W/\\\"ff7b5d2b-363a-49dc-9915-13d115d30c6e\\\"\",\r\n \ - \ \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"4a20ea92-c23d-48ed-bd85-3580e0688eab\"\ - ,\r\n \"ipAddress\": \"20.237.209.127\",\r\n \"publicIPAddressVersion\"\ - : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"ipTags\": [],\r\n \"ddosSettings\": {\r\n \"protectionMode\"\ - : \"VirtualNetworkInherited\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\ - ,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ - \r\n }\r\n}" + string: '{"name":"pubip2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2","etag":"W/\"0adcc40c-c953-4883-99ba-70162ceab690\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"db277329-c315-4e55-b091-a650c74989cd","ipAddress":"57.154.176.206","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '770' + - '640' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:37 GMT + - Mon, 04 Nov 2024 02:31:06 GMT etag: - - W/"ff7b5d2b-363a-49dc-9915-13d115d30c6e" + - W/"0adcc40c-c953-4883-99ba-70162ceab690" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 80ea4811-6ba0-4d97-a04f-8e5624fc45ec + - 02a6f4d6-d3db-4c5a-90bd-2393f2455894 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: F48D6261B6664065B56345E1869B06AA Ref B: MAA201060514025 Ref C: 2024-11-04T02:31:06Z' status: code: 200 message: OK @@ -659,31 +622,35 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_ip_config000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001","name":"cli_test_azure_firewall_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_azure_firewall_ip_config","date":"2023-08-08T02:16:06Z","module":"azure-firewall"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001","name":"cli_test_azure_firewall_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_azure_firewall_ip_config","date":"2024-11-04T02:30:34Z","module":"azure-firewall","Creator":"v-ruih@microsoft.com","DateCreated":"2024-11-04T02:30:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '421' + - '491' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:38 GMT + - Mon, 04 Nov 2024 02:31:08 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 8BC7FE65246D47A183857E2E5B5B7803 Ref B: MAA201060516051 Ref C: 2024-11-04T02:31:08Z' status: code: 200 message: OK @@ -708,55 +675,43 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2024-03-01 response: body: - string: "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet\"\ - ,\r\n \"etag\": \"W/\\\"4f3b1452-a73f-463e-9589-4732eee090bc\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ - \ \"resourceGuid\": \"46e11591-8bb2-454d-9708-641881609a83\",\r\n \"\ - addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ - \r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\"\ - : \"AzureFirewallSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\"\ - ,\r\n \"etag\": \"W/\\\"4f3b1452-a73f-463e-9589-4732eee090bc\\\"\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ - ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ - : [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\ - \n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ - : false\r\n }\r\n}" + string: '{"name":"myvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet","etag":"W/\"ed4d6a33-0c2d-4272-8f3b-11bf968c3897\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"a9da0389-cea2-419d-a32f-48ac379d5f9d","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"AzureFirewallSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet","etag":"W/\"ed4d6a33-0c2d-4272-8f3b-11bf968c3897\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d26ceb91-c94e-4f6e-8269-0260a6cc201d?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5ae4f332-2c54-4edc-99fb-ab343ae65684?api-version=2024-03-01&t=638662842741444581&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=OEmX4S-S9KqxV9nG3r9k3alFDTzsp9cNVNx63DyNpxmUcFegchLyORybed1F5uE-hUgPN-0MSvFn9aNCNCnXmyIPdCjG898skU5QrUKftvRwTKMegNOt2LL5Jupyn4rNzsycXTyB0x_uALnpSnEIyZqe-2yN_gfoD26yJCkoz_zajEIaCF00gnXm0ljeqQUah9TV5wz2kywliP2eoNjtYLurC0Wk39rB5LSf1vnAlzZwm0n3jo8HNXcwJNYTItaw_pFIyYZIG2ZZE27NVQDuahd_A1jR8-Gn4iPKd68TFV3YYAZTp3n_bJhjzKm2zRKOOjTFC0Mx4gOrjkSt5fcR6Q&h=WsbtRZ__-54JfsNRyrlEpFeU4ih_ueN9S2E6dIG5Hso cache-control: - no-cache content-length: - - '1290' + - '1068' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:44 GMT + - Mon, 04 Nov 2024 02:31:13 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3673f3c9-d486-4e15-8f0e-747c431b9f31 + - 0e387aa6-cb41-45db-8832-62bab47ee6a0 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '199' + x-msedge-ref: + - 'Ref A: 6838338BA05C498C93DE209700951F60 Ref B: MAA201060514039 Ref C: 2024-11-04T02:31:09Z' status: code: 201 message: Created @@ -774,38 +729,37 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d26ceb91-c94e-4f6e-8269-0260a6cc201d?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5ae4f332-2c54-4edc-99fb-ab343ae65684?api-version=2024-03-01&t=638662842741444581&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=OEmX4S-S9KqxV9nG3r9k3alFDTzsp9cNVNx63DyNpxmUcFegchLyORybed1F5uE-hUgPN-0MSvFn9aNCNCnXmyIPdCjG898skU5QrUKftvRwTKMegNOt2LL5Jupyn4rNzsycXTyB0x_uALnpSnEIyZqe-2yN_gfoD26yJCkoz_zajEIaCF00gnXm0ljeqQUah9TV5wz2kywliP2eoNjtYLurC0Wk39rB5LSf1vnAlzZwm0n3jo8HNXcwJNYTItaw_pFIyYZIG2ZZE27NVQDuahd_A1jR8-Gn4iPKd68TFV3YYAZTp3n_bJhjzKm2zRKOOjTFC0Mx4gOrjkSt5fcR6Q&h=WsbtRZ__-54JfsNRyrlEpFeU4ih_ueN9S2E6dIG5Hso response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:45 GMT + - Mon, 04 Nov 2024 02:31:14 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4b36d331-8f60-4577-8de5-818e2204d4cf + - e09cb69c-d9f2-4db6-a6ca-2284f40db2be + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 918848C7FF7F4FBD9B07A9D72958DE31 Ref B: MAA201060514039 Ref C: 2024-11-04T02:31:14Z' status: code: 200 message: OK @@ -823,38 +777,37 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d26ceb91-c94e-4f6e-8269-0260a6cc201d?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5ae4f332-2c54-4edc-99fb-ab343ae65684?api-version=2024-03-01&t=638662842741444581&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=OEmX4S-S9KqxV9nG3r9k3alFDTzsp9cNVNx63DyNpxmUcFegchLyORybed1F5uE-hUgPN-0MSvFn9aNCNCnXmyIPdCjG898skU5QrUKftvRwTKMegNOt2LL5Jupyn4rNzsycXTyB0x_uALnpSnEIyZqe-2yN_gfoD26yJCkoz_zajEIaCF00gnXm0ljeqQUah9TV5wz2kywliP2eoNjtYLurC0Wk39rB5LSf1vnAlzZwm0n3jo8HNXcwJNYTItaw_pFIyYZIG2ZZE27NVQDuahd_A1jR8-Gn4iPKd68TFV3YYAZTp3n_bJhjzKm2zRKOOjTFC0Mx4gOrjkSt5fcR6Q&h=WsbtRZ__-54JfsNRyrlEpFeU4ih_ueN9S2E6dIG5Hso response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:55 GMT + - Mon, 04 Nov 2024 02:31:25 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0fbbd2d1-2969-42c9-8a01-365acc2c70fe + - e65c0045-7a68-4938-ba09-72658c25c2e3 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 9FF2E181DD2842E19235ADA6903A55D2 Ref B: MAA201060514039 Ref C: 2024-11-04T02:31:25Z' status: code: 200 message: OK @@ -872,55 +825,39 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2024-03-01 response: body: - string: "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet\"\ - ,\r\n \"etag\": \"W/\\\"b573dce7-4d6b-4f25-a15a-e8f1b4fc1187\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"resourceGuid\": \"46e11591-8bb2-454d-9708-641881609a83\",\r\n \"\ - addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ - \r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\"\ - : \"AzureFirewallSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\"\ - ,\r\n \"etag\": \"W/\\\"b573dce7-4d6b-4f25-a15a-e8f1b4fc1187\\\"\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ - : [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\ - \n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ - : false\r\n }\r\n}" + string: '{"name":"myvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet","etag":"W/\"688c8531-4764-42b8-ad17-cff271893a58\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"a9da0389-cea2-419d-a32f-48ac379d5f9d","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"AzureFirewallSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet","etag":"W/\"688c8531-4764-42b8-ad17-cff271893a58\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: cache-control: - no-cache content-length: - - '1292' + - '1070' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:56 GMT + - Mon, 04 Nov 2024 02:31:25 GMT etag: - - W/"b573dce7-4d6b-4f25-a15a-e8f1b4fc1187" + - W/"688c8531-4764-42b8-ad17-cff271893a58" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 71d5c217-a7f2-4038-a654-2403f50dc061 + - 26315a2f-f498-44ee-9aa9-c0ca6a55b611 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: F57FB4466200413DBA43DDF1C36A426C Ref B: MAA201060514039 Ref C: 2024-11-04T02:31:25Z' status: code: 200 message: OK @@ -938,48 +875,39 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\"\ - ,\r\n \"etag\": \"W/\\\"ea4c8d69-2b21-4204-9df6-a26ea952b7d6\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\ - \r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\"\ - : {},\r\n \"ipConfigurations\": [],\r\n \"networkRuleCollections\":\ - \ [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\"\ - : []\r\n }\r\n}" + string: '{"name":"af1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1","etag":"W/\"6d21e9f2-e5aa-45ed-bed9-44822c840c3a\"","type":"Microsoft.Network/azureFirewalls","location":"westus","properties":{"provisioningState":"Succeeded","sku":{"name":"AZFW_VNet","tier":"Standard"},"threatIntelMode":"Alert","additionalProperties":{},"ipConfigurations":[],"networkRuleCollections":[],"applicationRuleCollections":[],"natRuleCollections":[]}}' headers: cache-control: - no-cache content-length: - - '655' + - '539' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:58 GMT + - Mon, 04 Nov 2024 02:31:27 GMT etag: - - W/"ea4c8d69-2b21-4204-9df6-a26ea952b7d6" + - W/"6d21e9f2-e5aa-45ed-bed9-44822c840c3a" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 117518ea-c58d-42ef-9d33-804f86313f7c + - b420af03-21cf-4b66-b2cf-f1944009e6b6 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 124F2AFEAB72455393EB71AEF64CC9E5 Ref B: MAA201060515031 Ref C: 2024-11-04T02:31:27Z' status: code: 200 message: OK @@ -1004,52 +932,43 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\"\ - ,\r\n \"etag\": \"W/\\\"ea4c8d69-2b21-4204-9df6-a26ea952b7d6\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\ - \r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\"\ - : {},\r\n \"ipConfigurations\": [],\r\n \"networkRuleCollections\":\ - \ [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\"\ - : []\r\n }\r\n}" + string: '{"name":"af1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1","etag":"W/\"6d21e9f2-e5aa-45ed-bed9-44822c840c3a\"","type":"Microsoft.Network/azureFirewalls","location":"westus","properties":{"provisioningState":"Succeeded","sku":{"name":"AZFW_VNet","tier":"Standard"},"threatIntelMode":"Alert","additionalProperties":{},"ipConfigurations":[],"networkRuleCollections":[],"applicationRuleCollections":[],"natRuleCollections":[]}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b41d7673-9b2a-4883-87e6-1a276e9094ee?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b679f623-dc30-48c6-905b-b44ee4afc88b?api-version=2021-08-01&t=638662842890376791&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=HQmM0GMaBwdTse5ceG1qV-OlyZTF4zXge8I2S7NwTIyPzTGA37iCiV2MDKzb0j7CjLrslNU-KxrHzcry06gAKBv_U7mLqwvQ3xjGiX_H0zRyZpFFHWjPAV29LGtqKtrEqqLe6Knsd6rDWLSNFBGRdwYs_ltK4KkLJ3c16X_HI72FximWt05fn57yO9e1E_Fb-bhwf1cMmne67a7IkeNa75XIZZbDFBo4_8zWLct9TRoAUy12ukgHuu3VUjCw1ml_tLHspPHFiAksw-KjbOG8WP0laLsaIvIud2uhdSMOxSS8O5N6O0c_csi4Aq1ee_RUZoWrPphSNV_uRmljeTsZpw&h=vbc-AVYWsACVd26VPHl2bgw2xpa0D8FXVg033FE8bhw cache-control: - no-cache content-length: - - '655' + - '539' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:58 GMT + - Mon, 04 Nov 2024 02:31:28 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a00efef5-40e2-4361-b466-8664849fb6b1 + - 5e37feb1-f795-46ab-ba71-eb26bc8035d1 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '199' + x-msedge-ref: + - 'Ref A: F03981E942244A25A98CC3B30DED484B Ref B: MAA201060515031 Ref C: 2024-11-04T02:31:28Z' status: code: 200 message: OK @@ -1067,38 +986,37 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b41d7673-9b2a-4883-87e6-1a276e9094ee?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b679f623-dc30-48c6-905b-b44ee4afc88b?api-version=2021-08-01&t=638662842890376791&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=HQmM0GMaBwdTse5ceG1qV-OlyZTF4zXge8I2S7NwTIyPzTGA37iCiV2MDKzb0j7CjLrslNU-KxrHzcry06gAKBv_U7mLqwvQ3xjGiX_H0zRyZpFFHWjPAV29LGtqKtrEqqLe6Knsd6rDWLSNFBGRdwYs_ltK4KkLJ3c16X_HI72FximWt05fn57yO9e1E_Fb-bhwf1cMmne67a7IkeNa75XIZZbDFBo4_8zWLct9TRoAUy12ukgHuu3VUjCw1ml_tLHspPHFiAksw-KjbOG8WP0laLsaIvIud2uhdSMOxSS8O5N6O0c_csi4Aq1ee_RUZoWrPphSNV_uRmljeTsZpw&h=vbc-AVYWsACVd26VPHl2bgw2xpa0D8FXVg033FE8bhw response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:59 GMT + - Mon, 04 Nov 2024 02:31:28 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 19f354f2-a704-49ee-ade8-d10bf674f317 + - 6f972292-ebc7-40d7-aa71-9f67dcb1a2d5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 01F2084345BA4D31992CC2A0958B006C Ref B: MAA201060515031 Ref C: 2024-11-04T02:31:29Z' status: code: 200 message: OK @@ -1116,48 +1034,39 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\"\ - ,\r\n \"etag\": \"W/\\\"ea4c8d69-2b21-4204-9df6-a26ea952b7d6\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\ - \r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\"\ - : {},\r\n \"ipConfigurations\": [],\r\n \"networkRuleCollections\":\ - \ [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\"\ - : []\r\n }\r\n}" + string: '{"name":"af1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1","etag":"W/\"6d21e9f2-e5aa-45ed-bed9-44822c840c3a\"","type":"Microsoft.Network/azureFirewalls","location":"westus","properties":{"provisioningState":"Succeeded","sku":{"name":"AZFW_VNet","tier":"Standard"},"threatIntelMode":"Alert","additionalProperties":{},"ipConfigurations":[],"networkRuleCollections":[],"applicationRuleCollections":[],"natRuleCollections":[]}}' headers: cache-control: - no-cache content-length: - - '655' + - '539' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:16:59 GMT + - Mon, 04 Nov 2024 02:31:29 GMT etag: - - W/"ea4c8d69-2b21-4204-9df6-a26ea952b7d6" + - W/"6d21e9f2-e5aa-45ed-bed9-44822c840c3a" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ed40bf82-8133-4e50-8c1c-aafd872486be + - ce36d6d0-6cd6-481c-8d24-8a26a788ae31 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 314628112E53433F90B88F2EB44CC574 Ref B: MAA201060515031 Ref C: 2024-11-04T02:31:29Z' status: code: 200 message: OK @@ -1175,48 +1084,39 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\"\ - ,\r\n \"etag\": \"W/\\\"ea4c8d69-2b21-4204-9df6-a26ea952b7d6\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\ - \r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\"\ - : {},\r\n \"ipConfigurations\": [],\r\n \"networkRuleCollections\":\ - \ [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\"\ - : []\r\n }\r\n}" + string: '{"name":"af1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1","etag":"W/\"6d21e9f2-e5aa-45ed-bed9-44822c840c3a\"","type":"Microsoft.Network/azureFirewalls","location":"westus","properties":{"provisioningState":"Succeeded","sku":{"name":"AZFW_VNet","tier":"Standard"},"threatIntelMode":"Alert","additionalProperties":{},"ipConfigurations":[],"networkRuleCollections":[],"applicationRuleCollections":[],"natRuleCollections":[]}}' headers: cache-control: - no-cache content-length: - - '655' + - '539' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:17:02 GMT + - Mon, 04 Nov 2024 02:31:30 GMT etag: - - W/"ea4c8d69-2b21-4204-9df6-a26ea952b7d6" + - W/"6d21e9f2-e5aa-45ed-bed9-44822c840c3a" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 801fd818-89e5-46ca-8202-7d15359f9802 + - c9f91da8-40a0-48f3-80bb-8a926792ca00 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 669C84D56C59498DB30AEF1DB9200FEE Ref B: MAA201060514047 Ref C: 2024-11-04T02:31:31Z' status: code: 200 message: OK @@ -1241,52 +1141,43 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\"\ - ,\r\n \"etag\": \"W/\\\"ea4c8d69-2b21-4204-9df6-a26ea952b7d6\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\ - \r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\"\ - : {},\r\n \"ipConfigurations\": [],\r\n \"networkRuleCollections\":\ - \ [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\"\ - : []\r\n }\r\n}" + string: '{"name":"af1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1","etag":"W/\"6d21e9f2-e5aa-45ed-bed9-44822c840c3a\"","type":"Microsoft.Network/azureFirewalls","location":"westus","properties":{"provisioningState":"Succeeded","sku":{"name":"AZFW_VNet","tier":"Standard"},"threatIntelMode":"Alert","additionalProperties":{},"ipConfigurations":[],"networkRuleCollections":[],"applicationRuleCollections":[],"natRuleCollections":[]}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6631eb42-fef7-4ee3-a201-fdff1254ec8b?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74202028-12ef-423c-a653-0f129bd40aa3?api-version=2021-08-01&t=638662842936043699&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=uTfKtkNwsZzADXFjs38sQj9jDJ2Ezb-UCSXvw5hj3I4WJqGWUR2ZiR1f8tCPbxDThFIQFczHgtSSEl1WYCObav26sQ11oTJwHmpPsUuvEcZJn_KE6lpY1gqtNqMitZH9n98fUaVAwc6q-nRAOIoHUSdPJG2CLRyRBGtN9FwP27LDsqQXqjoRy0RdPvlz5f3w9bKEfS9-zXTkXtFN2REFNAsCaFYtYzhBGY-UjD0-DmGDFQ1utsQBDLOWaB48TgC57PH-5Ytms0_2WPa2X1VAv2rYWIn02h-nWksBS7QJjCQRGZzqiFd-ESnWhEt7mXg-aoO9sF850sE62zNQ49U7UQ&h=xcdZwHjREH8aYFkjOJ8r1ZZt0x1R0sofbTFkrzsFe40 cache-control: - no-cache content-length: - - '655' + - '539' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:17:03 GMT + - Mon, 04 Nov 2024 02:31:32 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2d183cbc-4ff8-4524-ace3-8515e3cdbced + - eb079527-729f-45ee-8e43-58d3b97ee56c + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '199' + x-msedge-ref: + - 'Ref A: 2DEE58264FFC4D8C867D33B2B61165A1 Ref B: MAA201060514047 Ref C: 2024-11-04T02:31:31Z' status: code: 200 message: OK @@ -1304,38 +1195,37 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6631eb42-fef7-4ee3-a201-fdff1254ec8b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/74202028-12ef-423c-a653-0f129bd40aa3?api-version=2021-08-01&t=638662842936043699&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=uTfKtkNwsZzADXFjs38sQj9jDJ2Ezb-UCSXvw5hj3I4WJqGWUR2ZiR1f8tCPbxDThFIQFczHgtSSEl1WYCObav26sQ11oTJwHmpPsUuvEcZJn_KE6lpY1gqtNqMitZH9n98fUaVAwc6q-nRAOIoHUSdPJG2CLRyRBGtN9FwP27LDsqQXqjoRy0RdPvlz5f3w9bKEfS9-zXTkXtFN2REFNAsCaFYtYzhBGY-UjD0-DmGDFQ1utsQBDLOWaB48TgC57PH-5Ytms0_2WPa2X1VAv2rYWIn02h-nWksBS7QJjCQRGZzqiFd-ESnWhEt7mXg-aoO9sF850sE62zNQ49U7UQ&h=xcdZwHjREH8aYFkjOJ8r1ZZt0x1R0sofbTFkrzsFe40 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:17:03 GMT + - Mon, 04 Nov 2024 02:31:33 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cbef80c1-49c0-4412-85c9-9fd83c36f85d + - b163fbd9-90ab-4319-be01-e1293b3c2c86 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 1FA81CB90AD5493B95245D7930527C62 Ref B: MAA201060514047 Ref C: 2024-11-04T02:31:33Z' status: code: 200 message: OK @@ -1353,48 +1243,39 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2021-08-01 response: body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\"\ - ,\r\n \"etag\": \"W/\\\"ea4c8d69-2b21-4204-9df6-a26ea952b7d6\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\ - \r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\"\ - : {},\r\n \"ipConfigurations\": [],\r\n \"networkRuleCollections\":\ - \ [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\"\ - : []\r\n }\r\n}" + string: '{"name":"af1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1","etag":"W/\"6d21e9f2-e5aa-45ed-bed9-44822c840c3a\"","type":"Microsoft.Network/azureFirewalls","location":"westus","properties":{"provisioningState":"Succeeded","sku":{"name":"AZFW_VNet","tier":"Standard"},"threatIntelMode":"Alert","additionalProperties":{},"ipConfigurations":[],"networkRuleCollections":[],"applicationRuleCollections":[],"natRuleCollections":[]}}' headers: cache-control: - no-cache content-length: - - '655' + - '539' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:17:04 GMT + - Mon, 04 Nov 2024 02:31:34 GMT etag: - - W/"ea4c8d69-2b21-4204-9df6-a26ea952b7d6" + - W/"6d21e9f2-e5aa-45ed-bed9-44822c840c3a" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 990e58ae-6b45-4621-a514-50853e862383 + - 84dfe965-d71f-4c38-9418-2089f63a6f3c + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 997A0BBEB08F49F6B86C2AE21FA40FC3 Ref B: MAA201060514047 Ref C: 2024-11-04T02:31:34Z' status: code: 200 message: OK diff --git a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_with_firewall_policy.yaml b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_with_firewall_policy.yaml index 3acde989dbc..e1ada4ba41c 100644 --- a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_with_firewall_policy.yaml +++ b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_with_firewall_policy.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.31.0 + - python-requests/2.32.3 method: GET uri: https://aka.ms/azure-cli-extension-index-v1 response: @@ -23,15 +23,15 @@ interactions: content-length: - '0' date: - - Tue, 08 Aug 2023 02:20:50 GMT + - Mon, 04 Nov 2024 02:30:41 GMT expires: - - Tue, 08 Aug 2023 02:20:50 GMT + - Mon, 04 Nov 2024 02:30:41 GMT location: - https://azcliextensionsync.blob.core.windows.net/index1/index.json pragma: - no-cache request-context: - - appId=cid-v1:9b037ab9-fa5a-4c09-81bd-41ffa859f01e + - appId=cid-v1:b47e5e27-bf85-45ba-a97c-0377ce0e5779 server: - Kestrel strict-transport-security: @@ -51,41908 +51,55549 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.31.0 + - python-requests/2.32.3 method: GET uri: https://azcliextensionsync.blob.core.windows.net/index1/index.json response: body: - string: "{\n \"extensions\": {\n \"account\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/account-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"account-0.1.0-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"account\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools SubscriptionClient Extension\",\n \ - \ \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"badd35099d52efc5d8c337eee3ce3958005e6bfbb0c83798a74458b90ea6046b\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/account-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"account-0.2.0-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"account\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools SubscriptionClient Extension\",\n \ - \ \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"a5613056e59cccaf4de58d9b108b0103f1b5a698345e6261b5bf83b3ff7637cf\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/account-0.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"account-0.2.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/account\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"account\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools SubscriptionClient Extension\"\ - ,\n \"version\": \"0.2.1\"\n },\n \ - \ \"sha256Digest\": \"aba36f7a6f109d2bd1b1624ebcfdfd07a97e9a0b05b051d0af7d2ddb4d2f3c89\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/account-0.2.4-py3-none-any.whl\"\ - ,\n \"filename\": \"account-0.2.4-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.38.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/account\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"account\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools SubscriptionClient Extension\"\ - ,\n \"version\": \"0.2.4\"\n },\n \ - \ \"sha256Digest\": \"3bbf45c0e82cf5f76f62beee08b2df8c01dc6a5863d887814e791af69c6f715b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/account-0.2.5-py3-none-any.whl\"\ - ,\n \"filename\": \"account-0.2.5-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.38.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/account\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"account\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools SubscriptionClient Extension\"\ - ,\n \"version\": \"0.2.5\"\n },\n \ - \ \"sha256Digest\": \"0b94df323acfc48ea3141904649106bb85695187dbf63aa3b8448ec12bc00c23\"\ - \n }\n ],\n \"acrquery\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/acrquery-1.0.0-py3-none-any.whl\"\ - ,\n \"filename\": \"acrquery-1.0.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.48.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"Programming\ - \ Language :: Python :: 3.10\",\n \"License :: OSI\ - \ Approved :: MIT License\"\n ],\n \"\ - extensions\": {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"KraterDev@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/acrquery\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"acrquery\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AcrQuery Extension\"\ - ,\n \"version\": \"1.0.0\"\n },\n \ - \ \"sha256Digest\": \"07f5f253de7e3eb8b2ec2726e3b899474f71ebef9ba2d3c0acbca7a1a0a05c54\"\ - \n }\n ],\n \"acrtransfer\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/acrtransfer-1.0.0-py3-none-any.whl\"\ - ,\n \"filename\": \"acrtransfer-1.0.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"KraterDev@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/acrtransfer\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"acrtransfer\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Acrtransfer Extension\"\ - ,\n \"version\": \"1.0.0\"\n },\n \ - \ \"sha256Digest\": \"8fadff19781b34ab246a15a5c222fd6af53ea93f7778fbf933d1ccd082f3e362\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/acrtransfer-1.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"acrtransfer-1.1.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"KraterDev@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/acrtransfer\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"acrtransfer\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Acrtransfer Extension\"\ - ,\n \"version\": \"1.1.0\"\n },\n \ - \ \"sha256Digest\": \"668b94d0341b663a610212f318b899a53be60ae0eb59c47e162f5dabd3483551\"\ - \n }\n ],\n \"ad\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ad-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ad-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ad\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ad\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools DomainServicesResourceProvider\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"61df234e10759e9916c1d447ab02b82637de10fd97c31a17252e1f5183853883\"\ - \n }\n ],\n \"adp\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/adp-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"adp-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.40.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/adp\"\n \ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n \ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"adp\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Adp Extension.\",\n \ - \ \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"fd64519832f4fd314431f87176507e10249b8d165537f81d05c9ea5185ae84ec\"\ - \n }\n ],\n \"aem\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aem-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aem-0.1.1-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.30\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 2\",\n \"Programming Language :: Python :: 2.7\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"yugangw@microsoft.com\"\ - ,\n \"name\": \"Yugang Wang\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.29.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"aem\",\n \"summary\":\ - \ \"Manage Azure Enhanced Monitoring Extensions for SAP\",\n \ - \ \"version\": \"0.1.1\"\n },\n \"sha256Digest\"\ - : \"4ac7b8a4a89eda68d9d1a07cc5edd9b1a2b88421e2aa9a9e5b86a241f127775f\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aem-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aem-0.2.0-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.30\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 2\",\n \"Programming Language :: Python :: 2.7\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"yugangw@microsoft.com\"\ - ,\n \"name\": \"Yugang Wang\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"aem\",\n \"summary\":\ - \ \"Manage Azure Enhanced Monitoring Extensions for SAP\",\n \ - \ \"version\": \"0.2.0\"\n },\n \"sha256Digest\"\ - : \"3ae49bb9f6b07cdaae840079c95e3d30c7e8bc27ba68d542e8e122cf4c14ce00\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aem-0.2.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aem-0.2.1-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.19.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"yugangw@microsoft.com\",\n \"\ - name\": \"Yugang Wang\",\n \"role\": \"\ - author\"\n }\n ],\n\ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aem\",\n \"\ - summary\": \"Manage Azure Enhanced Monitoring Extensions for SAP\",\n \ - \ \"version\": \"0.2.1\"\n },\n \ - \ \"sha256Digest\": \"fb11a2b2b46c5bae831216969bc333a74c7f2a1f77fb8fae7427b911d27bdd41\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aem-0.2.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aem-0.2.2-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.19.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"yugangw@microsoft.com\",\n \"\ - name\": \"Yugang Wang\",\n \"role\": \"\ - author\"\n }\n ],\n\ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aem\",\n \"\ - summary\": \"Manage Azure Enhanced Monitoring Extensions for SAP\",\n \ - \ \"version\": \"0.2.2\"\n },\n \ - \ \"sha256Digest\": \"4019ccd9d3bfef853bbe31bc178e07ea1d132a8dea6e6931f917c0d4b0130d13\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aem-0.3.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aem-0.3.0-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.19.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"yugangw@microsoft.com\",\n \"\ - name\": \"Yugang Wang\",\n \"role\": \"\ - author\"\n }\n ],\n\ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aem\",\n \"\ - summary\": \"Manage Azure Enhanced Monitoring Extensions for SAP\",\n \ - \ \"version\": \"0.3.0\"\n },\n \ - \ \"sha256Digest\": \"25aaf9006ab1d115d7c484cfda1c9ad0e3617af6d2140db87499aaea81b67ff8\"\ - \n }\n ],\n \"ai-examples\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ai_examples-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"ai_examples-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.81\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.5\",\n \"Programming\ - \ Language :: Python :: 3.6\",\n \"Programming Language\ - \ :: Python :: 3.7\",\n \"Programming Language :: Python\ - \ :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\ - \n ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"mabooe@microsoft.com\",\n \ - \ \"name\": \"Matthew Booe\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ai-examples\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ai-examples\",\n \ - \ \"summary\": \"Add AI powered examples to help content.\",\n \ - \ \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"3bf63937122345abe28f6d6ddcac8c76491ae992910a6516bcb506e099e59f8b\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ai_examples-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"ai_examples-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.2.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.5\",\n \"Programming\ - \ Language :: Python :: 3.6\",\n \"Programming Language\ - \ :: Python :: 3.7\",\n \"Programming Language :: Python\ - \ :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\ - \n ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"mabooe@microsoft.com\",\n \ - \ \"name\": \"Matthew Booe\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ai-examples\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ai-examples\",\n \ - \ \"summary\": \"Add AI powered examples to help content.\",\n \ - \ \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"1e976b938f377e35618525154b46725fa66f17883a6fb233fb2f9d427a34421b\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ai_examples-0.2.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"ai_examples-0.2.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.2.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.5\",\n \"Programming\ - \ Language :: Python :: 3.6\",\n \"Programming Language\ - \ :: Python :: 3.7\",\n \"Programming Language :: Python\ - \ :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\ - \n ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"mabooe@microsoft.com\",\n \ - \ \"name\": \"Matthew Booe\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ai-examples\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ai-examples\",\n \ - \ \"summary\": \"Add AI powered examples to help content.\",\n \ - \ \"version\": \"0.2.1\"\n },\n \ - \ \"sha256Digest\": \"f45d5a3726924c8a7ae03f2fce1ea4c0221291cf5c815dd54bbc7cd867f1edc2\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ai_examples-0.2.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"ai_examples-0.2.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.2.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.5\",\n \"Programming\ - \ Language :: Python :: 3.6\",\n \"Programming Language\ - \ :: Python :: 3.7\",\n \"Programming Language :: Python\ - \ :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\ - \n ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"mabooe@microsoft.com\",\n \ - \ \"name\": \"Matthew Booe\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ai-examples\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ai-examples\",\n \ - \ \"summary\": \"Add AI powered examples to help content.\",\n \ - \ \"version\": \"0.2.2\"\n },\n \ - \ \"sha256Digest\": \"6f5da7c8783d6c295b0bc290284609d2e4d60618e208529ec224cde6137254e7\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ai_examples-0.2.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"ai_examples-0.2.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.2.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.5\",\n \"Programming\ - \ Language :: Python :: 3.6\",\n \"Programming Language\ - \ :: Python :: 3.7\",\n \"Programming Language :: Python\ - \ :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\ - \n ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"mabooe@microsoft.com\",\n \ - \ \"name\": \"Matthew Booe\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ai-examples\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ai-examples\",\n \ - \ \"summary\": \"Add AI powered examples to help content.\",\n \ - \ \"version\": \"0.2.3\"\n },\n \ - \ \"sha256Digest\": \"b4e02c629f2d5613553460c0c1923d638753b355cda5cd7e6ed11b573eaf6d01\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ai_examples-0.2.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"ai_examples-0.2.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.2.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.5\",\n \"Programming\ - \ Language :: Python :: 3.6\",\n \"Programming Language\ - \ :: Python :: 3.7\",\n \"Programming Language :: Python\ - \ :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\ - \n ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"mabooe@microsoft.com\",\n \ - \ \"name\": \"Matthew Booe\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ai-examples\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ai-examples\",\n \ - \ \"summary\": \"Add AI powered examples to help content.\",\n \ - \ \"version\": \"0.2.4\"\n },\n \ - \ \"sha256Digest\": \"acb73b45ea35b909a0e25ca8757a1434d9ba109ebb3d54698850f5258e76132c\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ai_examples-0.2.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"ai_examples-0.2.5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.2.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.5\",\n \"Programming\ - \ Language :: Python :: 3.6\",\n \"Programming Language\ - \ :: Python :: 3.7\",\n \"Programming Language :: Python\ - \ :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\ - \n ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"mabooe@microsoft.com\",\n \ - \ \"name\": \"Matthew Booe\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ai-examples\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ai-examples\",\n \ - \ \"summary\": \"Add AI powered examples to help content.\",\n \ - \ \"version\": \"0.2.5\"\n },\n \ - \ \"sha256Digest\": \"badbdf5fc2e0b4a85c4124d3fc92859b582adf8f30f5727440ce81942140099a\"\ - \n }\n ],\n \"aks-preview\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.36-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.36-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.36\"\n },\n \ - \ \"sha256Digest\": \"ea288c9a118ff077caba6110c395864f5c569d87ab395f02a1b11eefd00d3db6\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.37-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.37-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.37\"\n },\n \ - \ \"sha256Digest\": \"80d04f0d477b987dd462e6c1fb3fdbe7441c7ea1e3c75fb8593847d43b4a1e3b\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.38-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.38-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.38\"\n },\n \ - \ \"sha256Digest\": \"1ded28b781b6be42b7006fa1a9784d33a90cef43690034dfd22f890519737570\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.39-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.39-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.39\"\n },\n \ - \ \"sha256Digest\": \"0fdcf5377dcd987221405a3cce324cf823d6f22f0cedd0ea6dc7e3b357be50c4\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.40-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.40-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.40\"\n },\n \ - \ \"sha256Digest\": \"ea0e3e82ed682134734460b8a6489c4e586cfca97706cc2037d9ace16491c286\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.41-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.41-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.41\"\n },\n \ - \ \"sha256Digest\": \"f2c6b7d062f3798400b274926e70123fe02ea8bd6a94f645bbf5c1474ce42e33\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.42-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.42-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.42\"\n },\n \ - \ \"sha256Digest\": \"8b7b592b640b4e46410cf97600106c277506403487e083a3496c33c634e63a06\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.43-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.43-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.43\"\n },\n \ - \ \"sha256Digest\": \"d351dc69bac520400beffaa571dccdd1fd37534c28309fa703ae59802d25cad5\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.44-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.44-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.44\"\n },\n \ - \ \"sha256Digest\": \"544d8dbab694fd5a2e04a1cac310e36881682e309c5df772f037451e3d7da51c\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.45-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.45-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.45\"\n },\n \ - \ \"sha256Digest\": \"78b8536cf5b4349d47a3d1742d36514f99780ef8eff31336d8cb5dfc2e5c6080\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.47-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.47-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.47\"\n },\n \ - \ \"sha256Digest\": \"042b4acfecdc98059907abce1224c0865f1a61abd566fdc00e09a61436a52e27\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.49-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.49-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.49\"\n },\n \ - \ \"sha256Digest\": \"ccd0ec11a5fe08427547eb65111ab5c4bab5a59d2eb8d90173d3afa242260518\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.50-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.50-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.50\"\n },\n \ - \ \"sha256Digest\": \"4c00426e0e993c1a1205a9e09500025cadf287b5ba9c7248027bd91922a94688\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.51-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.51-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.51\"\n },\n \ - \ \"sha256Digest\": \"60db16bbf0149d80545044dbcb6a353822f867876b2a2547e584432775bd2bf7\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.52-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.52-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.52\"\n },\n \ - \ \"sha256Digest\": \"7ca39f7f93274649857adc648ae2c7f971d846a99917e6c42b514075d19eb93f\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.53-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.53-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.53\"\n },\n \ - \ \"sha256Digest\": \"8a71bf3f14338831750c4d086be49b09dbc65e40aedbbc9bc8c558ca8dcb1b21\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.54-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.54-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.54\"\n },\n \ - \ \"sha256Digest\": \"a12d1907641e8212e0fb4e5f2a6eb85154252a2cd92a1539bf7b809c3b3aa840\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.55-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.55-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.55\"\n },\n \ - \ \"sha256Digest\": \"d6fa0ec6dfffa82941d9b93415b317f5aee42191c3f6193fbc5842f36822cc48\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.56-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.56-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.56\"\n },\n \ - \ \"sha256Digest\": \"b03984389a701e3bdfd0327a5428e2b73394daadca15c072173efd367cc7350e\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.57-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.57-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.57\"\n },\n \ - \ \"sha256Digest\": \"2f80ce7345874f6dc791c25b59bfccdd8d1df2fc5a58eee89c12d5bee36e09f2\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.58-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.58-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.58\"\n },\n \ - \ \"sha256Digest\": \"6c0e9eeff259f87d5db5deab028bd0c875103d4f94af3b4f872167330de14c2d\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.59-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.59-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.59\"\n },\n \ - \ \"sha256Digest\": \"33f4caf55366ac68d8b914bf0d06b695ea90d37ea1a26752c5c4ce7345f60b7d\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.60-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.60-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.60\"\n },\n \ - \ \"sha256Digest\": \"5baa213387c341a054dd8bc8a610f6f4ce0507d5fb1b96b13b0025c1cffb32a3\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.61-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.61-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.61\"\n },\n \ - \ \"sha256Digest\": \"e40833b2de89ae4884d0d88741ed6949d6a3b8e970c946e1ff4aed1ca5215b57\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.62-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.62-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.62\"\n },\n \ - \ \"sha256Digest\": \"41538793759b3aae977c3c0e6263a271b20ea130467d89c0dee19877198f0703\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.63-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.63-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.63\"\n },\n \ - \ \"sha256Digest\": \"ad7e574b1728797189c3e7185ff56e09e835086bd8876c4ef8cbdc54ffe1bc77\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.64-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.64-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.64\"\n },\n \ - \ \"sha256Digest\": \"507a299bddcb9199f589be12ad0761e03c8386ed2b4ca26782199e9c1f18bf49\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.65-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.65-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.65\"\n },\n \ - \ \"sha256Digest\": \"3c1d2f8daedab5d6e6adea1ee1f0222be411f64b2b960ce270feb2aa5955145f\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.66-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.66-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.66\"\n },\n \ - \ \"sha256Digest\": \"ff66452ee3ea3bd31da976107f59006a11ada4e565328fdd56c36c876680b826\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.67-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.67-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.67\"\n },\n \ - \ \"sha256Digest\": \"1ae0b48d36ea387f25311bbd24f3170c98ed2e3fd1d2a8d07ed32759f0d92828\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.68-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.68-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.68\"\n },\n \ - \ \"sha256Digest\": \"a281f668a6a9aca42b30fe81914621cce0b7ed8b5dc6c011d299f81ab7c213aa\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.69-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.69-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.69\"\n },\n \ - \ \"sha256Digest\": \"d670fa4333caf852f4fb298cac96617f24101af8a01af505eb6730936280598a\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.70-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.70-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.70\"\n },\n \ - \ \"sha256Digest\": \"ae85aefb746698433f3175f87ab8f53c866aafd5f4d68d7277336e6bedeaffd8\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.71-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.71-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.71\"\n },\n \ - \ \"sha256Digest\": \"a122cfbcc9eb43d3e89e4a19e7f7641e95d6c3184e486bf790b6cdd088c98c79\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.72-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.72-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.72\"\n },\n \ - \ \"sha256Digest\": \"5d8ec45db6137170926753fe13f7afa8bc66b7b2d8e1af420bb4615b20b471bf\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.73-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.4.73-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.4.73\"\n },\n \ - \ \"sha256Digest\": \"d5cd928c82d0f65dbdefc651b2925bfba8710d14d9ecb2aab50ce3b6b461a3c5\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.0\"\n },\n \ - \ \"sha256Digest\": \"abb67e21afe5760a77dc90832ff3790da7041e19240b5e16829b27562b538917\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.1\"\n },\n \ - \ \"sha256Digest\": \"18a96ea0a9a7402715bd8896901e9b9b1a69ae40f8791755337178fdb3d2dd8b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.2\"\n },\n \ - \ \"sha256Digest\": \"8a0d406acb640b0f9e2a5c2aba6ec1038aa14178e28cacb07f213127da4c7d4a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.3\"\n },\n \ - \ \"sha256Digest\": \"a5ee5bd051e5e3909dd84593ff6c5ae9aa37eb4fd68ffa23db1011894c15ba9d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.4\"\n },\n \ - \ \"sha256Digest\": \"9d917bb16488f2e0c07b8448675105ce726e836f3070cb1669394ce174893ec4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.5\"\n },\n \ - \ \"sha256Digest\": \"17a72fbfd8ddafbe11cedadb5f2fd9b514d700ecc3854ece5c257c5c7e443182\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.6-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.6\"\n },\n \ - \ \"sha256Digest\": \"70552c8f2eb4c60d7de4f2ed9225c16757c6f1978fa0a091d83ab74a748155a5\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.7-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.7\"\n },\n \ - \ \"sha256Digest\": \"3721871ac87368c30bd8dfbcd6ff745bb4254f9b2daff651ba3de892dfd15067\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.8-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.8-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.8\"\n },\n \ - \ \"sha256Digest\": \"c32a30d83efeee2cdb23e5dccf1d86788835bcb8947d6ba838fab63d97409bd5\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.9-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.9-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.9\"\n },\n \ - \ \"sha256Digest\": \"8e9f36f5ee8f07e3d7f24de3ffe11aa82ba1af4b135286cf3e463d8d6d7e5ab3\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.10-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.10-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.10\"\n },\n \ - \ \"sha256Digest\": \"2dc5f15206e44d509d1a6738ee7b24bd3bba20d2a184d9fd93423affb346abdc\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.11-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.11-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.11\"\n },\n \ - \ \"sha256Digest\": \"9eeda4d792219e1745948103bd6f0677a724553708ba1ccf49ca484181939f07\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.12-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.12-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.12\"\n },\n \ - \ \"sha256Digest\": \"9d7f0941b2e1e765cd48cee7b7502a035d65385ddce9d210ccdf6ef68519b4e4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.13-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.13-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.13\"\n },\n \ - \ \"sha256Digest\": \"54409bfe6bc1b8c34183eea46624973cb6c53acf6b11b5665cc21b229da17156\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.14-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.14-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.14\"\n },\n \ - \ \"sha256Digest\": \"635f9a1ed5cd480da0e730ddd3116bc352997120aa1feff1b3972067460bbc9f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.15-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.15-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.15\"\n },\n \ - \ \"sha256Digest\": \"c5bc6296b75fcdaf2a499d34dfa184d6cdeda7a8abaf1306fd758dd04804e621\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.17-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.17-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.17\"\n },\n \ - \ \"sha256Digest\": \"add861fdea86d7789a0680a3db61fbc32736849c137eb043cb4496f1ee07b742\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.18-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.18-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.18\"\n },\n \ - \ \"sha256Digest\": \"5cdb117cd30f743c092131bf77e8a699ba4e62bdf7f60a987b5e04387a57ccec\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.19-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.19-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.19\"\n },\n \ - \ \"sha256Digest\": \"ea42777c9a90295667bc3dc2154f3f3c9f122f884fd7dea661d4948d81dc0b63\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.21-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.21-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.21\"\n },\n \ - \ \"sha256Digest\": \"8035103b7eb04451b596d70d03f7b1685418e6679c143db5cf6ca70d91e65848\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.22-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.22-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.22\"\n },\n \ - \ \"sha256Digest\": \"d9673c7d1496e2d85d2b15ad1fc7b2e24101517d8714c4a1cc9f86175cf395a2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.23-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.23-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.23\"\n },\n \ - \ \"sha256Digest\": \"1d5ad0d8d49f0cf13ffb65cbb3a60651dfa87a8b8b9537f7d9574d4bdc68c1d6\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.24-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.24-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.24\"\n },\n \ - \ \"sha256Digest\": \"4f2e624cc8e1a9ef653295b563d883f2fe58016ca1ba5b45485f17d60d410de7\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.25-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.25-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.25\"\n },\n \ - \ \"sha256Digest\": \"67e35a0b44ffa2c73c98e0ef8604705302707a383b1ffe37a5a9368f2d2a24bb\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.26-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.26-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.26\"\n },\n \ - \ \"sha256Digest\": \"b0653d61f1b26184f2439bef551fb42055f9509ec4f4a3e805d20bce2f382cf8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.27-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.27-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.27\"\n },\n \ - \ \"sha256Digest\": \"327010762d4953215b870434fafd0f64f7c46bf6d41eafe147a7de202331e3d3\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.28-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.28-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.28\"\n },\n \ - \ \"sha256Digest\": \"6242d3de31d9fb51d7385e4b8b4880806a6df7057d552914ae114d6445440b9e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.29-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.29-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.29\"\n },\n \ - \ \"sha256Digest\": \"4b433b98716ceb98545a1031ac06284ed06cdb454af009e486a30b32ec07b176\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.30-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.30-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.30\"\n },\n \ - \ \"sha256Digest\": \"c7a0e4838eebb2a6ee5fafa97c361b73ccb66440e1e27f8d10b241de36c82afd\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.31-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.31-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.31\"\n },\n \ - \ \"sha256Digest\": \"fed778a52ba3233267c1a957e59d6b62f40dfaac4483c3285fb1747659a180e1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.32-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.32-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.32\"\n },\n \ - \ \"sha256Digest\": \"d2267981145c8c7494d0b74ed6e0629ebff46e44b632d5936c01eee885c0f9a3\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.33-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.33-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.33\"\n },\n \ - \ \"sha256Digest\": \"a087c366a73df27aa0950067649a75cfb08432e331f95d497915e62c5291f59e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.34-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.34-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.34\"\n },\n \ - \ \"sha256Digest\": \"32a00c0a498ca140540ffd4a33685cbf9f188bee23c9b75d47a12ca342420102\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.35-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.35-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.35\"\n },\n \ - \ \"sha256Digest\": \"ae1c4eb5688de501f34a1125495f012ddd6445aea1f4da3ac9b81d52c019a309\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.37-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.37-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.37\"\n },\n \ - \ \"sha256Digest\": \"9f5cd1a94360c156d4baef8a7c8c6230f291807caa4857528ba57ff99ff5772d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.38-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.38-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.38\"\n },\n \ - \ \"sha256Digest\": \"8f3711491f7f6952e6cf50f517de94a0a3380c906f8e3a1c67e917c3ec63b7ad\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.39-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.39-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.39\"\n },\n \ - \ \"sha256Digest\": \"249d7eacc77ec774ab656b4cc8bda7e0d9a1790ff7ec9851a3869f3dc3357869\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.40-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.40-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.40\"\n },\n \ - \ \"sha256Digest\": \"6fb60461a49eb3534343eab73a665edf0dc3fa38f6e77972a15442fe35ef7ef5\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.41-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.41-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.41\"\n },\n \ - \ \"sha256Digest\": \"031601c9ef162925ab378ba7e86b843f258b8feddfe8e52bb8d4d6896d7504d8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.42-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.42-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.42\"\n },\n \ - \ \"sha256Digest\": \"70b557f454023cd8300da0081f34c97f8ab142d2a867507cc356d5d45e2f6585\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.44-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.44-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.44\"\n },\n \ - \ \"sha256Digest\": \"bf9b38c16159417372b85e10874554ccc08b3a1d545ac098d864d88c832293e8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.45-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.45-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.45\"\n },\n \ - \ \"sha256Digest\": \"dce3edd35e9467e64db64ea6fe69a3360f51be02fcf273126c77bd2a79bc43c7\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.46-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.46-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.46\"\n },\n \ - \ \"sha256Digest\": \"9f811e0176fb309f40c0a6a2cfbd50c27aa4c19a80f518ad100e232c382da336\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.47-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.47-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.47\"\n },\n \ - \ \"sha256Digest\": \"a3d03b2ad7ae74468556b8142252e9e51f70e50ce5b1685c8188930b1e43a4ef\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.48-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.48-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.48\"\n },\n \ - \ \"sha256Digest\": \"f253e1df741ca7a9b22fef56a362606f9cd7f9e79d52d25fe36a8f76a2c0b52f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.49-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.49-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.31.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.49\"\n },\n \ - \ \"sha256Digest\": \"8ee88b5673e5d0b69176f8e6b1b5402854b6b28b763e749251414d3801650259\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.50-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.50-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.31.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.50\"\n },\n \ - \ \"sha256Digest\": \"1ee3571431ef61e5c66bc92ca9927b97d0eaf37e0c9290e55744fcf8bd8cf552\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.51-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.51-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.31.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.51\"\n },\n \ - \ \"sha256Digest\": \"9908869553f8438a8f184586396e2f2013871bbf49063b95a2ee4d354c539912\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.52-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.52-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.31.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.52\"\n },\n \ - \ \"sha256Digest\": \"9446d0056caeabbfbac6a47ac88fdb67757db285c7063b5e8074befbc56338d0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.53-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.53-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.53\"\n },\n \ - \ \"sha256Digest\": \"d8e85ba210d276b5caee4d8049b1e0e3ea5b55d6b319a630cf2e523305e6e6cc\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.54-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.54-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.54\"\n },\n \ - \ \"sha256Digest\": \"957461fa774e2f4a041464a1c82b77edd6b380c6e77ae7a4ae84fba6402380a3\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.55-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.55-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.55\"\n },\n \ - \ \"sha256Digest\": \"6dffcadb2091abab3e6c682dcac05a8149f6887e04550342e1ae33109fd4266f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.56-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.56-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.56\"\n },\n \ - \ \"sha256Digest\": \"113eca94a2bda03fea6810bffbed83c1e1c5ab91d38b40001e8bab320d6449e2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.57-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.57-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.57\"\n },\n \ - \ \"sha256Digest\": \"ef52483bd0f162fcc1fc0cced91a5804956c202bf0d3559e48f76a26241ace36\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.58-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.58-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.58\"\n },\n \ - \ \"sha256Digest\": \"9ad0566d2719940ac927723e65fd79586eae3ce86190b52cfcda3286c98ee30d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.59-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.59-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.59\"\n },\n \ - \ \"sha256Digest\": \"24253eef69ebb4622873771959e33b25d9612f3303cc924c84f8d6e175420f69\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.60-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.60-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.60\"\n },\n \ - \ \"sha256Digest\": \"c3d1861f4bfa276d714448198b71f482b26538162f0724bb5686343a084a0de6\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.61-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.61-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.61\"\n },\n \ - \ \"sha256Digest\": \"98f1c161076a1b17889069fd8b654c4be14b5778088cf46a834d6be2a580dca7\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.62-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.62-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.62\"\n },\n \ - \ \"sha256Digest\": \"d1c27a01a402f252e01016181cf988a6da125d120bff168c4b4e85f994215d56\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.63-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.63-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.63\"\n },\n \ - \ \"sha256Digest\": \"cb5ca46f649303009a52c84ec1a9e8efc788e6e80989e07541f03c4edf02cc93\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.64-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.64-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.64\"\n },\n \ - \ \"sha256Digest\": \"377db46a822434677059bae8f8584e408d42ba951a7e8b688e50579236864faf\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.65-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.65-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.65\"\n },\n \ - \ \"sha256Digest\": \"df53989fd97f37b5feb6bd54dca9c11308cd8ac6c77e012efccfb4c0111c2f18\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.66-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.66-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.66\"\n },\n \ - \ \"sha256Digest\": \"82026c5aafd8f0c7f5e72524e708a4ed5c6485b574686d0cdded1104f20a82b3\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.67-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.67-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.67\"\n },\n \ - \ \"sha256Digest\": \"5bedccad76afa1af2196feea59de05fce27d6e917bd6580793ea553399bc2cd5\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.68-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.68-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.68\"\n },\n \ - \ \"sha256Digest\": \"0501655b210d9b4d8812c9b1820f4860c9e26aa839652c6265ab201dbcfb46d6\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.69-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.69-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.69\"\n },\n \ - \ \"sha256Digest\": \"371eec5e3dda3fd7b6ade5274603887bb2113c8e1833a30d49b08a413f3dede4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.70-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.70-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.70\"\n },\n \ - \ \"sha256Digest\": \"b209c35cf11c76b71a751d727d05cd29b9c4d946bf3ff61d1c51284c83292f9b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.71-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.71-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.71\"\n },\n \ - \ \"sha256Digest\": \"7d9550c43140a2eb110addfea27ff8a37d08e1f007a439e77e76ba93110ea38c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.73-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.73-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.73\"\n },\n \ - \ \"sha256Digest\": \"aea0f83dbc8a9aa258a1a64446118919d629d66a0836d3fc800a0f726dda65a2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.74-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.74-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.74\"\n },\n \ - \ \"sha256Digest\": \"2e6afcc3ababf020e0d4debe8c21334f91f52e8ada3b76261c3a5cda3a7c4462\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.75-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.75-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.75\"\n },\n \ - \ \"sha256Digest\": \"3e6ec892b290606c3c7d504883e5bac1a29cdfd3bb98ba95ac2575dd2f3b81b2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.76-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.76-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.76\"\n },\n \ - \ \"sha256Digest\": \"daeef61715beb0aad8387286c324dd6450d3ab6cc731476b182a8a70c1d5997a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.77-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.77-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.77\"\n },\n \ - \ \"sha256Digest\": \"35008db1e3d6e9ae6c409ed0749a37f6fddec6223aa8cefa0e7245af5f81c95a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.78-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.78-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.78\"\n },\n \ - \ \"sha256Digest\": \"a98ecf3b74dae40025d90c8fa152341897682b3647964fd4876545c71b1aa186\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.79-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.79-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.79\"\n },\n \ - \ \"sha256Digest\": \"e00adb76107a1daf813b7469392cc42f54dfe37a13f300e0e3f5fb59604a1a7a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.80-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.80-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.80\"\n },\n \ - \ \"sha256Digest\": \"b2b6b10bea7eb3e667b6d3377be2c901c8a707de4a29fea5b5e4e2c5a79ea465\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.81-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.81-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.81\"\n },\n \ - \ \"sha256Digest\": \"cd513d21399b00621fe54b3cef4e5736b521d89f4233d01020efe8a1fb2a029d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.82-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.82-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.82\"\n },\n \ - \ \"sha256Digest\": \"0d92faa3baf8df81f784efe3c719f915fc846e0f5a1b5884477b28bc19a3dc5e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.83-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.83-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.83\"\n },\n \ - \ \"sha256Digest\": \"01a9cba4d6553f8dc21a8bc837db19761a61c683ddbd72383071030edb5fa806\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.85-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.85-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.85\"\n },\n \ - \ \"sha256Digest\": \"1b67fa76d283eee75bb135dc4e4efd9640364a84cd9c0786d6311090b8d9b8fd\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.86-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.86-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.86\"\n },\n \ - \ \"sha256Digest\": \"6d35edb29885d02dce1c27d3fc16280239b288151984ac9b84f7d0de8ba44b61\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.87-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.87-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.87\"\n },\n \ - \ \"sha256Digest\": \"74b0bdfee2818757cafb88edec216446e71bf0f56c9365a387966ef0490bcbfc\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.88-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.88-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.88\"\n },\n \ - \ \"sha256Digest\": \"6794b2151eae3176e8db725a786201606afb4d2e94a76201e21652f2a19d0a4c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.89-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.89-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.89\"\n },\n \ - \ \"sha256Digest\": \"e7f1b203399906812680aaed0e3f6e21000967e0699482d97e1c449035a8bc6a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.91-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.91-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.91\"\n },\n \ - \ \"sha256Digest\": \"08de921452dc174603c794405373819a7bda972c8a3307f81e17e9ad4f369f80\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.92-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.92-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.92\"\n },\n \ - \ \"sha256Digest\": \"6855d7fcdfce7119d799a010f9c50e5aa0132b06581ef84e6d3cf43871691abe\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.93-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.93-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.93\"\n },\n \ - \ \"sha256Digest\": \"3a49835718b33330fb33256a4dfbfe49bc6b507fb37c48e51d20a7588753f2cf\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.94-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.94-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.94\"\n },\n \ - \ \"sha256Digest\": \"2dd0f45bcb79b72eaf418577a927331db48bb15a1743cb9f66fd0642960b9e8d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.95-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.95-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.95\"\n },\n \ - \ \"sha256Digest\": \"6f6a946f84e00dfe9d4625ec0e7d927be93ed6ecf5b99ba7c4b146c946ec4672\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.96-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.96-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.96\"\n },\n \ - \ \"sha256Digest\": \"908a79b3da57b3615f45cc9e201249942894d32983b9b94f1a5996e3b25d2e6b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.97-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.97-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.97\"\n },\n \ - \ \"sha256Digest\": \"c0a5a5a605cbf1fa158aab8566f8fbb51879a9ee0465ffc40f164040c37cebcd\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.98-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.98-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.98\"\n },\n \ - \ \"sha256Digest\": \"0299269b7b1c9646d2ceafd2b29eeefb371fe1d4f15d55078afd4830d019c7d8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.99-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.99-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.99\"\n },\n \ - \ \"sha256Digest\": \"d6f0130ea6949e312cdf19c6f628847734bc14817a731e228015979afeda20ec\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.100-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.100-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.100\"\n },\n \ - \ \"sha256Digest\": \"1bf97307cd519f0d00a457242e1d610ea018d19480a5d2d4ed0ef73b8e179169\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.101-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.101-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.101\"\n },\n \ - \ \"sha256Digest\": \"1e5144540998b973acbb75a2c68896681b1a2b094216e6316391a1d6bea3103e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.102-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.102-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.102\"\n },\n \ - \ \"sha256Digest\": \"da3db3c239bc960a536b79bf4797b75ba765da31e066ad56dbedff00aab22172\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.103-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.103-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.103\"\n },\n \ - \ \"sha256Digest\": \"c0ca8f11a7bd40fe6793c85c571bc0bacb76645f8f0a73967173b14f4be2463b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.104-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.104-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.104\"\n },\n \ - \ \"sha256Digest\": \"a1eea0c50c624f45143aa55b26934af0d9a5f7a19ac9b26942deb13515fe6ab8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.105-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.105-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.105\"\n },\n \ - \ \"sha256Digest\": \"27191e8cf1baa2349028e693b4df3f78fec190da0e84ccbf7bc1efeffaa57c6d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.106-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.106-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.106\"\n },\n \ - \ \"sha256Digest\": \"782279fdb8f799d8e1220f878692875320af639942023c0b03dfdfd5d80added\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.107-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.107-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.107\"\n },\n \ - \ \"sha256Digest\": \"ba55241d5566bd0a888e6c01466a57bdf8f413e5c51456db2cd7ffddf163ef8f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.108-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.108-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.108\"\n },\n \ - \ \"sha256Digest\": \"e2d2b9d407cfb3ce44c5565ac9ce20ced6edf25075c31d9f8a2658993b158510\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.109-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.109-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.109\"\n },\n \ - \ \"sha256Digest\": \"b17d2536b555d6f6f3381a11003d284aa4cd29906975ab3fe47d40dc39b8aaa0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.110-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.110-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.110\"\n },\n \ - \ \"sha256Digest\": \"eb0922cd4f404db8fc064c315ee86bdb750b9389e0a2513d04fa535855b410bb\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.111-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.111-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.111\"\n },\n \ - \ \"sha256Digest\": \"7da4a7815d1f192f1e5c1172e732956ddfaa9d218856188b9ce5906040b21fbe\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.112-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.112-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.112\"\n },\n \ - \ \"sha256Digest\": \"b33d01bc5ba13d5932951e577ede76d97aa6d3fad88dcabe1b786b3f12476eff\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.113-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.113-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.113\"\n },\n \ - \ \"sha256Digest\": \"033c6189f4ce704653e4f9ef880ccbedecd478d652922cdb16a604f0fcdd6cc2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.114-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.114-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.114\"\n },\n \ - \ \"sha256Digest\": \"364f6267114f199a6c1f9b5362826f6f14c924c21b9587e4dc5ca90c49ec3d6e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.115-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.115-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.115\"\n },\n \ - \ \"sha256Digest\": \"9e439856742f46e8a8c5b3943f6b777ee88f57d17328fb5e4b1fe3c3fd21c090\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.116-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.116-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.116\"\n },\n \ - \ \"sha256Digest\": \"45abf043ba212a690a6c4aff76e9ade1a1837ce68f1bb580967b96dbe2e9aeca\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.117-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.117-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.117\"\n },\n \ - \ \"sha256Digest\": \"ba691e46614a854c4f3a9d899354f845d0e858b1be364f33c8317b0f46b34c3f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.118-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.118-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.118\"\n },\n \ - \ \"sha256Digest\": \"009365c9ec95eb5a43097855d97d3a14e90653d9c76c268dd17da226f7f70c2e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.119-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.119-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.119\"\n },\n \ - \ \"sha256Digest\": \"c8b50ac78a54a293caf2065a64b309f14934f2f953b50b2606670865942b6a8d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.120-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.120-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.120\"\n },\n \ - \ \"sha256Digest\": \"80fa490cd015d3393cab6edfc6e6a7aa1f00648b3f0f9274f7c1c1f989042e0f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.121-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.121-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.121\"\n },\n \ - \ \"sha256Digest\": \"ebbf8d856bcb1fc9029473015665258d9e1732f3d05aa28c6dd07a0d5810af84\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.122-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.122-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.122\"\n },\n \ - \ \"sha256Digest\": \"8c986496fe32418802a134cd844b4a6414f52cbe60270d08d9dc3d44be64c598\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.123-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.123-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.123\"\n },\n \ - \ \"sha256Digest\": \"b27f427aa2af44805a108af291a0c87db6caae2fd1206743f5005cf89fa7b858\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.125-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.125-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.125\"\n },\n \ - \ \"sha256Digest\": \"5965b8105fc2ad546961ef02136422e1dbc399755f371d005e145615dba61649\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.126-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.126-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.126\"\n },\n \ - \ \"sha256Digest\": \"bd8b6ac2ab0800a0ecff4f06b8afec19cc3b463dc951b1f02a06449585b78a9a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.127-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.127-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.127\"\n },\n \ - \ \"sha256Digest\": \"2d38c18442369e6295f14e68d12eadfc24deb6d9458b735accc623c447fd52ed\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.128-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.128-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.128\"\n },\n \ - \ \"sha256Digest\": \"1156f159e8c1b16284b930487a1284aca1ded1dbc8d21a6cbf5cddcdc625767a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.129-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.129-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.129\"\n },\n \ - \ \"sha256Digest\": \"49e50e7fd43b285880af9c6b17d1c3bddd316fdecf555eb473388c200423970e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.130-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.130-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.130\"\n },\n \ - \ \"sha256Digest\": \"6e224106eb13daaea1336044f07b03fd8ef10bb42b9b21c11818dda148b2ab43\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.131-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.131-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.131\"\n },\n \ - \ \"sha256Digest\": \"e8667cb199cb25394d237b3ced6c36195b67c00481a2145e2220878cb616c7bb\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.132-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.132-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.132\"\n },\n \ - \ \"sha256Digest\": \"2d3329d0ba04aa1c68a952b29c54f90e9cf1abed85c0f1a51a6eb302c87fc187\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.133-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.133-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.133\"\n },\n \ - \ \"sha256Digest\": \"eaee3b3ca9f13d4153597476f9a45ca5fd00d8b4e02e01ca1cc07c937525a41b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.134-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.134-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.134\"\n },\n \ - \ \"sha256Digest\": \"3fa34226198f09bc38d36248893f08662d183c8106006ffae912dbf1d4b351ee\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.135-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.135-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.135\"\n },\n \ - \ \"sha256Digest\": \"eb0b780c84f51cbbe48f037e388b2be95692bd2d5c36daf53faa8f5251ec7ae5\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.136-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.136-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.136\"\n },\n \ - \ \"sha256Digest\": \"3901766ce0200e6dfed5d1f877a27036b57732caf2f0a3955a7aeb7c5183dac6\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.137-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.137-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.137\"\n },\n \ - \ \"sha256Digest\": \"37c4ca90690b6e48c1ae52e7e0912eee4cbb1a10c9953e2de2fc3a9926186294\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.138-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.138-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.138\"\n },\n \ - \ \"sha256Digest\": \"344a05b128c2dc402e4307843c8f67bb3101a207088eab66128a570684658a29\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.139-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.139-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.139\"\n },\n \ - \ \"sha256Digest\": \"7a79b661d0aab0a89b4ca8a4c9677f14bb5bf57b89850b6256cc6c120a2775ca\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.140-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.140-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.140\"\n },\n \ - \ \"sha256Digest\": \"89da9b212c448cf7161dad3abacfcd79c0a93a5e105713655f473f1c99be6184\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.141-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.141-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.141\"\n },\n \ - \ \"sha256Digest\": \"0b26ee8a6e84d1e546bdab8be66a809febef53c55d61084cb096c1493281fb82\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.142-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.142-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.142\"\n },\n \ - \ \"sha256Digest\": \"003c5a3fec5d73fa1ae557cce51b16d19950026a4fc7a16365c382ae7e400dbd\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.143-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.143-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.143\"\n },\n \ - \ \"sha256Digest\": \"0babf8e7e8f77960cf7c7d97204e4ac521ceff58a1e46d15c2f8e9d80d114676\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.144-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.144-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.144\"\n },\n \ - \ \"sha256Digest\": \"15e12e2e4c345d92a5eecc6da160a1c766674a0ec322b865428fdbeb0483e2db\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.145-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.145-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.145\"\n },\n \ - \ \"sha256Digest\": \"f367662b934cf1a086ae81a5494146c0b408a321509561ca2be093688d2da3c8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.146-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.146-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.146\"\n },\n \ - \ \"sha256Digest\": \"e369e9c478b91ddd72bd9ac801a9acaca111f7add363c1e0691abc4aca91bb87\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.147-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.147-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.147\"\n },\n \ - \ \"sha256Digest\": \"75c40934415a76a71bac2680c80271c5a5a89aa5036e2c647925829055e15c83\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.148-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.148-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developvalidate_nodepool_taintsers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.148\"\n },\n \ - \ \"sha256Digest\": \"4ff9ebd66e8a51bb781fb9e76100b9bf510cc4a13cdee314ef8f63052674e897\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.149-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.149-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developvalidate_nodepool_taintsers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.149\"\n },\n \ - \ \"sha256Digest\": \"c1a7eb356edab7f496e6672f9516a3360303899dd479586458c37886a6c00b76\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.150-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"aks_preview-0.5.150-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developvalidate_nodepool_taintsers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"aks-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming AKS features\",\n \ - \ \"version\": \"0.5.150\"\n },\n \ - \ \"sha256Digest\": \"19e2fdf3642656d05a470bb95370af5d72b9c6f8e11bbfa0ea7a5fb8702671ba\"\ - \n }\n ],\n \"alb\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alb-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"alb-0.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.48.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/alb\"\n \ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n \ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"alb\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools ALB Extension.\",\n \ - \ \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"d88930eedb6164a3ac71ff42ab5f8e3b21edb5f95d01274f35fc7f91bbf70378\"\ - \n }\n ],\n \"alertsmanagement\": [\n \ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"alertsmanagement-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"fey@microsoft.com\"\ - ,\n \"name\": \"Github:qwordy\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"alertsmanagement\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Alerts Extension\",\n\ - \ \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"80ab78574debff9d8a9106bac3929cb552adea1371ea24f06073669fef708fcd\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"alertsmanagement-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"fey@microsoft.com\"\ - ,\n \"name\": \"Github:qwordy\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/alertsmanagement\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"alertsmanagement\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Alerts Extension\"\ - ,\n \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"319f2855f71de21b22b721b4b02d50faf858a71c04ced52a4f4c1e4e114dffa6\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"alertsmanagement-0.2.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/alertsmanagement\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"alertsmanagement\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AlertsManagementClient\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"1881c770fca969d269840923f1a6332602ec0a031c7402aaefa3ac6babadf70c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"alertsmanagement-0.2.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/alertsmanagement\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"alertsmanagement\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AlertsManagementClient\ - \ Extension\",\n \"version\": \"0.2.1\"\n \ - \ },\n \"sha256Digest\": \"4ad81bafbcf4d0cc813918d3a370eda0ff4d7e8d410cadb1adee353e300d58ef\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.2.2-py3-none-any.whl\"\ - ,\n \"filename\": \"alertsmanagement-0.2.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/alertsmanagement\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"alertsmanagement\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AlertsManagementClient\ - \ Extension\",\n \"version\": \"0.2.2\"\n \ - \ },\n \"sha256Digest\": \"2221f34f874532e4c5324f821a40a49f6cecca70b72e594144e6baf60b08508e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.2.3-py3-none-any.whl\"\ - ,\n \"filename\": \"alertsmanagement-0.2.3-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/alertsmanagement\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"alertsmanagement\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AlertsManagementClient\ - \ Extension\",\n \"version\": \"0.2.3\"\n \ - \ },\n \"sha256Digest\": \"b45a5752924ab1205ff5862f03a4a465eccb4dd8e79900023498d674aa68665b\"\ - \n }\n ],\n \"alias\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/alias-0.5.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"alias-0.5.2-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.0.50.dev0\"\ - ,\n \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"t-chwong@microsoft.com\",\n \ - \ \"name\": \"Ernest Wong\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.29.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"alias\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"jinja2 (~=2.10)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Support for command aliases\",\n \"version\"\ - : \"0.5.2\"\n },\n \"sha256Digest\": \"05f82d75026e780d27bd34a1be57f4ec0f425500d8ab4ee7e92fee07b944da33\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/alias-0.5.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"alias-0.5.1-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.0.31.dev0\"\ - ,\n \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"t-chwong@microsoft.com\",\n \ - \ \"name\": \"Ernest Wong\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"alias\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"jinja2 (~=2.10)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Support for command aliases\",\n \"version\"\ - : \"0.5.1\"\n },\n \"sha256Digest\": \"81b9a7f1824bffcbd6e72680891476151dde868e030cdbf1bfd9135e1a8f3447\"\ - \n }\n ],\n \"amg\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"amg-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.maxCliCoreVersion\": \"2.99.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.30.0\",\n \"\ - classifiers\": [\n \"Development Status :: 4 - Beta\"\ - ,\n \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"Programming Language\ - \ :: Python :: 3.8\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ad4g@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"amg\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"2770ea61e30390300de97c4a76424febfc46a24a62f250b0fd3625017cf133f3\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"amg-0.1.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.maxCliCoreVersion\": \"2.99.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.30.0\",\n \"\ - classifiers\": [\n \"Development Status :: 4 - Beta\"\ - ,\n \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"Programming Language\ - \ :: Python :: 3.8\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ad4g@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"amg\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\"\ - ,\n \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"267cb352947fc4d0991d6d36b5a5ab86604c95a66acfb030212653ae4ada0fc6\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-0.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"amg-0.1.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.maxCliCoreVersion\": \"2.99.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.30.0\",\n \"\ - classifiers\": [\n \"Development Status :: 4 - Beta\"\ - ,\n \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"Programming Language\ - \ :: Python :: 3.8\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ad4g@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"amg\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\"\ - ,\n \"version\": \"0.1.2\"\n },\n \ - \ \"sha256Digest\": \"f6e7b4cbe3fed90f9683ef96280612e2646286ca8028f4061013a0c6255c7208\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-0.1.3-py3-none-any.whl\"\ - ,\n \"filename\": \"amg-0.1.3-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.maxCliCoreVersion\": \"2.99.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.30.0\",\n \"\ - classifiers\": [\n \"Development Status :: 4 - Beta\"\ - ,\n \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"Programming Language\ - \ :: Python :: 3.8\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ad4g@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"amg\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\"\ - ,\n \"version\": \"0.1.3\"\n },\n \ - \ \"sha256Digest\": \"81e5bffefbb991136eaa19ab5175ff33ca8edec31b38c615ef2ffcaee80f5725\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"amg-0.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.maxCliCoreVersion\": \"2.99.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \"\ - classifiers\": [\n \"Development Status :: 4 - Beta\"\ - ,\n \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"Programming Language\ - \ :: Python :: 3.8\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ad4g@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"amg\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\"\ - ,\n \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"05b53c3e894a7f776251d2e5854c16e30cb6f5755d1e67e52fbcc5815f428d61\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-0.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"amg-0.3.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.maxCliCoreVersion\": \"2.99.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \"\ - classifiers\": [\n \"Development Status :: 4 - Beta\"\ - ,\n \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"Programming Language\ - \ :: Python :: 3.8\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ad4g@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"amg\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\"\ - ,\n \"version\": \"0.3.0\"\n },\n \ - \ \"sha256Digest\": \"c3db4f061746fe2dc656a00084069d2905eb2f95e35f8beafe2900add16d8089\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-0.3.1-py3-none-any.whl\"\ - ,\n \"filename\": \"amg-0.3.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.maxCliCoreVersion\": \"2.99.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \"\ - classifiers\": [\n \"Development Status :: 4 - Beta\"\ - ,\n \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"Programming Language\ - \ :: Python :: 3.8\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ad4g@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"amg\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\"\ - ,\n \"version\": \"0.3.1\"\n },\n \ - \ \"sha256Digest\": \"64f1ebcebdd06cc0277a3cfe26b29b150135ce5b092296b8975ec56732a60729\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.0.0-py3-none-any.whl\"\ - ,\n \"filename\": \"amg-1.0.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.maxCliCoreVersion\": \"2.99.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \"\ - classifiers\": [\n \"Development Status :: 4 - Beta\"\ - ,\n \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"Programming Language\ - \ :: Python :: 3.8\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ad4g@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"amg\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\"\ - ,\n \"version\": \"1.0.0\"\n },\n \ - \ \"sha256Digest\": \"dbb9572514ce2151900b38b9c30af7459f8ae35f8b052d0e7800894b50cc482e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"amg-1.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.maxCliCoreVersion\": \"2.99.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \"\ - classifiers\": [\n \"Development Status :: 4 - Beta\"\ - ,\n \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"Programming Language\ - \ :: Python :: 3.8\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ad4g@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"amg\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\"\ - ,\n \"version\": \"1.1.0\"\n },\n \ - \ \"sha256Digest\": \"9d6e10ce78bcdeca062ab790a80d62ca1ccaabdb27fca8db891cbf3cec2835a0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"amg-1.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.maxCliCoreVersion\": \"2.99.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \"\ - classifiers\": [\n \"Development Status :: 4 - Beta\"\ - ,\n \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"Programming Language\ - \ :: Python :: 3.8\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ad4g@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"amg\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\"\ - ,\n \"version\": \"1.2.0\"\n },\n \ - \ \"sha256Digest\": \"167bb7b5f668900d7d053d7b41a54ff89c5e5b89f723f4bb9c19d1e069a8d6e1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"amg-1.2.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.maxCliCoreVersion\": \"2.99.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \"\ - classifiers\": [\n \"Development Status :: 4 - Beta\"\ - ,\n \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"Programming Language\ - \ :: Python :: 3.8\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ad4g@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"amg\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\"\ - ,\n \"version\": \"1.2.1\"\n },\n \ - \ \"sha256Digest\": \"0e182a9545c7b5ffc9d1ca04a08a508b7edd1428b5f9f90b408f912dce3205c0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.2.2-py3-none-any.whl\"\ - ,\n \"filename\": \"amg-1.2.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.maxCliCoreVersion\": \"2.99.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \"\ - classifiers\": [\n \"Development Status :: 4 - Beta\"\ - ,\n \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"Programming Language\ - \ :: Python :: 3.8\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ad4g@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"amg\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\"\ - ,\n \"version\": \"1.2.2\"\n },\n \ - \ \"sha256Digest\": \"65903b31502c1405bbc0c0cedce6939e039825522ee2a0f85f3e4d8cb154531c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.2.3-py3-none-any.whl\"\ - ,\n \"filename\": \"amg-1.2.3-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.maxCliCoreVersion\": \"2.99.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \"\ - classifiers\": [\n \"Development Status :: 4 - Beta\"\ - ,\n \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"Programming Language\ - \ :: Python :: 3.8\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ad4g@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"amg\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\"\ - ,\n \"version\": \"1.2.3\"\n },\n \ - \ \"sha256Digest\": \"ecc4dc8bf92c722de40390ba8cbf90c45ea80d0bbb44596c80efb157f2d330b2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.2.4-py3-none-any.whl\"\ - ,\n \"filename\": \"amg-1.2.4-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.maxCliCoreVersion\": \"2.99.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \"\ - classifiers\": [\n \"Development Status :: 4 - Beta\"\ - ,\n \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"Programming Language\ - \ :: Python :: 3.8\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ad4g@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"amg\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\"\ - ,\n \"version\": \"1.2.4\"\n },\n \ - \ \"sha256Digest\": \"bc09a29642566d51b5a479ff3d9a62328ef84ad624c81c6e9eac9970c1fa3f02\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.2.5-py3-none-any.whl\"\ - ,\n \"filename\": \"amg-1.2.5-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.maxCliCoreVersion\": \"2.99.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \"\ - classifiers\": [\n \"Development Status :: 4 - Beta\"\ - ,\n \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"Programming Language\ - \ :: Python :: 3.8\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ad4g@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"amg\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\"\ - ,\n \"version\": \"1.2.5\"\n },\n \ - \ \"sha256Digest\": \"82c34f845b70bfcaa717a0f9c12b08f461a6513bfb6c8d1331353297f769036a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.2.6-py3-none-any.whl\"\ - ,\n \"filename\": \"amg-1.2.6-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.maxCliCoreVersion\": \"2.99.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \"\ - classifiers\": [\n \"Development Status :: 4 - Beta\"\ - ,\n \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"Programming Language\ - \ :: Python :: 3.8\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ad4g@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"amg\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\"\ - ,\n \"version\": \"1.2.6\"\n },\n \ - \ \"sha256Digest\": \"79540160025c90fe10595dc54560fb8a4025bb52cc78ca317351676e8a7b5aab\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.2.7-py3-none-any.whl\"\ - ,\n \"filename\": \"amg-1.2.7-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.maxCliCoreVersion\": \"2.99.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \"\ - classifiers\": [\n \"Development Status :: 4 - Beta\"\ - ,\n \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"Programming Language\ - \ :: Python :: 3.8\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ad4g@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"amg\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\"\ - ,\n \"version\": \"1.2.7\"\n },\n \ - \ \"sha256Digest\": \"1f2fc11c645cb9df353b783e0ca8f037fafd863615963364c842d62c2d2d9cb5\"\ - \n }\n ],\n \"amlfs\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amlfs-1.0.0-py3-none-any.whl\"\ - ,\n \"filename\": \"amlfs-1.0.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.49.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/amlfs\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"amlfs\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Amlfs Extension.\",\n\ - \ \"version\": \"1.0.0\"\n },\n \ - \ \"sha256Digest\": \"21b5a12943e727315288aa0ca1c49a25803a656b7f388c3c637596cfdf67bd1d\"\ - \n }\n ],\n \"application-insights\": [\n \ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"application_insights-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"aleldeib@microsoft.com\"\ - ,\n \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"application-insights\",\n \ - \ \"summary\": \"Support for managing Application Insights\ - \ components and querying metrics, events, and logs from such components.\"\ - ,\n \"version\": \"0.1.3\"\n },\n \ - \ \"sha256Digest\": \"e5b8104da5d9f241a0599adeb3b1d2f910f00991f47d4f4c4095285de3a82f00\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"application_insights-0.1.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"aleldeib@microsoft.com\"\ - ,\n \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"application-insights\",\n \ - \ \"summary\": \"Support for managing Application Insights\ - \ components and querying metrics, events, and logs from such components.\"\ - ,\n \"version\": \"0.1.4\"\n },\n \ - \ \"sha256Digest\": \"8b4ef4870b16a15fd81af385c3dff762e7af52333e212a68b5ec5f42663a6078\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"application_insights-0.1.5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"aleldeib@microsoft.com\",\n \ - \ \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n }\n\ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"application-insights\",\n \ - \ \"summary\": \"Support for managing Application Insights\ - \ components and querying metrics, events, and logs from such components.\"\ - ,\n \"version\": \"0.1.5\"\n },\n \ - \ \"sha256Digest\": \"effa0a37f1e8b2506d4849a2208d69f06a6683809e5da809bea63bd0f940da2f\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"application_insights-0.1.6-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"aleldeib@microsoft.com\",\n \ - \ \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n }\n\ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"application-insights\",\n \ - \ \"summary\": \"Support for managing Application Insights\ - \ components and querying metrics, events, and logs from such components.\"\ - ,\n \"version\": \"0.1.6\"\n },\n \ - \ \"sha256Digest\": \"271db7f2036eb245d3d00d5010468330e4ed97e7ed9756598e61a1960d37ac44\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"application_insights-0.1.7-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"aleldeib@microsoft.com\",\n \ - \ \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n }\n\ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"application-insights\",\n \ - \ \"summary\": \"Support for managing Application Insights\ - \ components and querying metrics, events, and logs from such components.\"\ - ,\n \"version\": \"0.1.7\"\n },\n \ - \ \"sha256Digest\": \"6cb8c879d0960e6f41e1273c309253d7d7ca42089694fcf5e500d0a27ae89b59\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.8-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"application_insights-0.1.8-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"aleldeib@microsoft.com\",\n \ - \ \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n }\n\ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"application-insights\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"isodate (~=0.6.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Support for managing Application Insights components\ - \ and querying metrics, events, and logs from such components.\",\n \ - \ \"version\": \"0.1.8\"\n },\n \ - \ \"sha256Digest\": \"f2f041e166f0b587e7c92252ef59e3bcecb8721f15c5e96f4496871a85a81f61\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.9-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"application_insights-0.1.9-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"aleldeib@microsoft.com\",\n \ - \ \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n }\n\ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"application-insights\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"isodate (~=0.6.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Support for managing Application Insights components\ - \ and querying metrics, events, and logs from such components.\",\n \ - \ \"version\": \"0.1.9\"\n },\n \ - \ \"sha256Digest\": \"4ed371e2e02a31133bec6d416dd98c0de3e1ffbf56089e034abc36609c9dfa97\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.10-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"application_insights-0.1.10-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"aleldeib@microsoft.com\",\n \ - \ \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n }\n\ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"application-insights\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"isodate (~=0.6.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Support for managing Application Insights components\ - \ and querying metrics, events, and logs from such components.\",\n \ - \ \"version\": \"0.1.10\"\n },\n \ - \ \"sha256Digest\": \"4f6ef254677ae32523f44af0f6b99bbdf6e5a8d1c894c7d2d72f4c8f8f359fb0\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.11-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"application_insights-0.1.11-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"aleldeib@microsoft.com\",\n \ - \ \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n }\n\ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"application-insights\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"isodate (~=0.6.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Support for managing Application Insights components\ - \ and querying metrics, events, and logs from such components.\",\n \ - \ \"version\": \"0.1.11\"\n },\n \ - \ \"sha256Digest\": \"ffb9b4daf395966226786cc55bce2beff7d9a22ccec739cb21910ff03f582e90\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.12-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"application_insights-0.1.12-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"aleldeib@microsoft.com\",\n \ - \ \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n }\n\ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"application-insights\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"isodate (~=0.6.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Support for managing Application Insights components\ - \ and querying metrics, events, and logs from such components.\",\n \ - \ \"version\": \"0.1.12\"\n },\n \ - \ \"sha256Digest\": \"94ecdd71a1007df791a193e9273e902c39caa53dc965823c019d41cd679ee27c\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.13-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"application_insights-0.1.13-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"aleldeib@microsoft.com\",\n \ - \ \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n }\n\ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"application-insights\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"isodate (~=0.6.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Support for managing Application Insights components\ - \ and querying metrics, events, and logs from such components.\",\n \ - \ \"version\": \"0.1.13\"\n },\n \ - \ \"sha256Digest\": \"b1d5d31cfbd8a75595943d7248e585d63d0a1c6b43c69febbd7162239af98933\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.14-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"application_insights-0.1.14-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"aleldeib@microsoft.com\",\n \ - \ \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n }\n\ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"application-insights\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"isodate (~=0.6.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Support for managing Application Insights components\ - \ and querying metrics, events, and logs from such components.\",\n \ - \ \"version\": \"0.1.14\"\n },\n \ - \ \"sha256Digest\": \"9e20c68a41b089691881813fa67596ee96141dda0575f57651417a5dc361d807\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.15-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"application_insights-0.1.15-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"aleldeib@microsoft.com\",\n \ - \ \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n }\n\ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/application-insights\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"application-insights\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"isodate (~=0.6.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Support for managing Application Insights components\ - \ and querying metrics, events, and logs from such components.\",\n \ - \ \"version\": \"0.1.15\"\n },\n \ - \ \"sha256Digest\": \"2173bccb328f61ebdb2ce1a3018856a4a6d2d179fe8d6b665e996203b0ac13a5\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.16-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"application_insights-0.1.16-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"aleldeib@microsoft.com\",\n \ - \ \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n }\n\ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/application-insights\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"application-insights\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"isodate (~=0.6.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Support for managing Application Insights components\ - \ and querying metrics, events, and logs from such components.\",\n \ - \ \"version\": \"0.1.16\"\n },\n \ - \ \"sha256Digest\": \"6b13261d341818e8e491506265ff86b5a4517149e92a462de2ac05102afc923a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.17-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"application_insights-0.1.17-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"aleldeib@microsoft.com\",\n \ - \ \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n }\n\ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/application-insights\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"application-insights\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"isodate (~=0.6.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Support for managing Application Insights components\ - \ and querying metrics, events, and logs from such components.\",\n \ - \ \"version\": \"0.1.17\"\n },\n \ - \ \"sha256Digest\": \"e43ed9edb7a60a3144f43859c69caa868af41ed31145cf8f7da677da29211682\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.18-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"application_insights-0.1.18-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"aleldeib@microsoft.com\"\ - ,\n \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/application-insights\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"application-insights\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"isodate (~=0.6.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Support for managing Application Insights components\ - \ and querying metrics, events, and logs from such components.\",\n \ - \ \"version\": \"0.1.18\"\n },\n \ - \ \"sha256Digest\": \"fd77fff1b394b9924365823c3236ebd234c80c20eecebeef24a3629faf220407\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.19-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"application_insights-0.1.19-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"aleldeib@microsoft.com\"\ - ,\n \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/application-insights\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"application-insights\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"isodate (~=0.6.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Support for managing Application Insights components\ - \ and querying metrics, events, and logs from such components.\",\n \ - \ \"version\": \"0.1.19\"\n },\n \ - \ \"sha256Digest\": \"38d7a81da141502533e250dd99f5b91b152464f0af99e0b71f1478f2ff63e930\"\ - \n }\n ],\n \"appservice-kube\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"appservice_kube-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.26.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"appservice-kube\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools App Service on Kubernetes\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"20f01eb95b1daadf21f589d3d953a756cb61259f279973880b4c0acbd4e05e27\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"appservice_kube-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.26.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"appservice-kube\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools App Service on Kubernetes\ - \ Extension\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"4b1b59fbac8dc68f390c48e9e8fa32676c041b857d2bf5f425bc8815e69b8708\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"appservice_kube-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.26.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"appservice-kube\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools App Service on Kubernetes\ - \ Extension\",\n \"version\": \"0.1.2\"\n \ - \ },\n \"sha256Digest\": \"aa67ced7e361002bf8bec125540c4f9eb216ba0ad7342336285b8bdd17f1ece0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"appservice_kube-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"2.33.1\",\n \ - \ \"azext.minCliCoreVersion\": \"2.33.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/appservice-kube\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"appservice-kube\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools App Service\ - \ on Kubernetes Extension\",\n \"version\": \"0.1.3\"\n\ - \ },\n \"sha256Digest\": \"e972d2e31eacf83f8ceddc7a4db88e72af71238cdfe6cb6772742be163a9230f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"appservice_kube-0.1.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.34.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/appservice-kube\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"appservice-kube\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools App Service\ - \ on Kubernetes Extension\",\n \"version\": \"0.1.4\"\n\ - \ },\n \"sha256Digest\": \"96156079aa1128cd5819d353aa27434b4c028f6b525275a136092c5c2b02af4f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"appservice_kube-0.1.5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.34.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/appservice-kube\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"appservice-kube\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools App Service\ - \ on Kubernetes Extension\",\n \"version\": \"0.1.5\"\n\ - \ },\n \"sha256Digest\": \"d380339170ffdfcdd1e26336da8a3586761b0268f959476f0ecdc50a6365160d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"appservice_kube-0.1.6-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.34.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/appservice-kube\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"appservice-kube\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools App Service\ - \ on Kubernetes Extension\",\n \"version\": \"0.1.6\"\n\ - \ },\n \"sha256Digest\": \"8bf69f06efb9f47aad181f1917f9148c10ab3df6ae1de5b584482a8141727b05\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"appservice_kube-0.1.7-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.34.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/appservice-kube\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"appservice-kube\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools App Service\ - \ on Kubernetes Extension\",\n \"version\": \"0.1.7\"\n\ - \ },\n \"sha256Digest\": \"0d0f1e3aa1540e204ffcfb5fb00ebf0ae7d6de693d73d5a94821679f81f75263\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.8-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"appservice_kube-0.1.8-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.34.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/appservice-kube\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"appservice-kube\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools App Service\ - \ on Kubernetes Extension\",\n \"version\": \"0.1.8\"\n\ - \ },\n \"sha256Digest\": \"71340c2f45b58add8c9aa7b2d0c4ac338ae124cf6f35af61e5560e079d2c2ba5\"\ - \n }\n ],\n \"arcappliance\": [\n {\n\ - \ \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-0.2.27-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcappliance-0.2.27-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.39.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"appliance@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"arcappliance\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"jsonschema (==3.2.0)\",\n \ - \ \"kubernetes (==11.0.0)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Arcappliance Extension\",\n\ - \ \"version\": \"0.2.27\"\n },\n \ - \ \"sha256Digest\": \"ac083e353e6b9a308df6723b9e759fbf8f4cec4694a4779d722ddd42c0132ada\"\ - \n },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-0.2.28-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcappliance-0.2.28-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"appliance@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"arcappliance\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"jsonschema (==3.2.0)\",\n \ - \ \"kubernetes (==11.0.0)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Arcappliance Extension\",\n\ - \ \"version\": \"0.2.28\"\n },\n \ - \ \"sha256Digest\": \"d3958a72a58c21092b3a01f04cf8fbb418a34db6c9310e16f41af3447052ed80\"\ - \n },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-0.2.29-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcappliance-0.2.29-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"appliance@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"arcappliance\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"jsonschema (==3.2.0)\",\n \ - \ \"kubernetes (==11.0.0)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Arcappliance Extension\",\n\ - \ \"version\": \"0.2.29\"\n },\n \ - \ \"sha256Digest\": \"3d6f6c2077d902b9a4270bc270c3a010bbcadad13f6079306749d553d8194f4b\"\ - \n },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-0.2.31-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcappliance-0.2.31-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"appliance@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"arcappliance\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"jsonschema (==3.2.0)\",\n \ - \ \"kubernetes (==11.0.0)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Arcappliance Extension\",\n\ - \ \"version\": \"0.2.31\"\n },\n \ - \ \"sha256Digest\": \"bf5bc6569b94c744acc417831b8dc58055a8e8437492231f2bca4cf0752e34ad\"\ - \n },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-0.2.32-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcappliance-0.2.32-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"appliance@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"arcappliance\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"jsonschema (==3.2.0)\",\n \ - \ \"kubernetes (==11.0.0)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Arcappliance Extension\",\n\ - \ \"version\": \"0.2.32\"\n },\n \ - \ \"sha256Digest\": \"57dda9d482808104f7261e56d2aec722971d22fb46eee0d81fa8dcc219a3179c\"\ - \n }\n ],\n \"arcdata\": [\n {\n \ - \ \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.5.4-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==23.3.0)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.5.4\"\n \ - \ },\n \"sha256Digest\": \"073bfd9b88ea3da38c2fff90e36c1a6d1e02a3a4242d2da139ff0d8de8094f55\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.5.3-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==23.3.0)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.5.3\"\n \ - \ },\n \"sha256Digest\": \"4c420b270d32c1b2c70ec1e6496fdad07bfd311be159638f44a97d159449183c\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.5.2-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==23.3.0)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.5.2\"\n \ - \ },\n \"sha256Digest\": \"d5b4fabc9f1285c4060c45195de8aae8e7b68f54369f998bc7036cde0fd622a5\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.5.1-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==23.3.0)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.5.1\"\n \ - \ },\n \"sha256Digest\": \"1d5d6d3ff7c18a7ce6ccdc5ac3dd4fc38b7b028fa9cf2e03ab58a05e6b733081\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.5.0-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==23.3.0)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.5.0\"\n \ - \ },\n \"sha256Digest\": \"9b1fd4f95a69ce545586d4bebdd7a1e561d966f1a2569a99c50f18ce9d91c0e2\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.13-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.4.13-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==23.3.0)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.4.13\"\n \ - \ },\n \"sha256Digest\": \"4241f12e3e45007cc55ded3361527ee8f67c683486039185c8a6075b75a8d35c\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.12-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.4.12-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==23.3.0)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.4.12\"\n \ - \ },\n \"sha256Digest\": \"f25bba4a4893c86eb1bb97ce7756ccff52414979f06b796ec881017a95811e04\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.11-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.4.11-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==23.3.0)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.4.11\"\n \ - \ },\n \"sha256Digest\": \"658b8e1a70644c140d05552f81ba22e04cdf523e48bb0123b83d16ba77369e2f\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.10-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.4.10-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==23.3.0)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.4.10\"\n \ - \ },\n \"sha256Digest\": \"5a66ae32b6fe2bf76ec9174f7c22ac1fac2325dea06f8e8ba46496d4ac24aa09\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.9-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.4.9-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==23.3.0)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.4.9\"\n \ - \ },\n \"sha256Digest\": \"e41a664bc431ced3fa5b4988c0155d124b93bbe74a828f0c26e28a4e5dc64c86\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.8-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.4.8-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==23.3.0)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.4.8\"\n \ - \ },\n \"sha256Digest\": \"de3b3b1675508c65cd65adfc3626a732f1c54df4abddb4d37de1df034076c22a\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.4.7-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==23.3.0)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.4.7\"\n \ - \ },\n \"sha256Digest\": \"cc93f2e345df2612dae91f5794ffbd5308a5c3649a9fb0d5d15dd07577b9ce8a\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.4.6-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==23.3.0)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.4.6\"\n \ - \ },\n \"sha256Digest\": \"d4111d3dc70de9c13e55becb3844f5fe1cf70e496c925a6b6e2d6c7db1666594\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.4.5-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==23.3.0)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.4.5\"\n \ - \ },\n \"sha256Digest\": \"707adc5e23d30706b53ae2a660f74fbd58ac087b21530d86d9f32be41f0e5adb\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.4.4-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==23.3.0)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.4.4\"\n \ - \ },\n \"sha256Digest\": \"43a1bf1f68b90484f6eae647e25e87ef6b03cb722f43c1917ef6bf8e5d919e8f\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.4.3-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==23.3.0)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.4.3\"\n \ - \ },\n \"sha256Digest\": \"2248da81432c9e2be1ce5a70c7288a6feb1f785256c19cb51bec934252401ee6\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.4.2-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==12.0.1)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.4.2\"\n \ - \ },\n \"sha256Digest\": \"f5c0a29bda9f7e914347dc00481c89d21dea17abf98d1038ec0c7fa337049d97\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.4.1-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==12.0.1)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.4.1\"\n \ - \ },\n \"sha256Digest\": \"702c8b02f0a2e2d3ad9110ec464ce04619a972d52875b76f839d1b3e0ce3817e\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.4.0-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==12.0.1)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.4.0\"\n \ - \ },\n \"sha256Digest\": \"26e67d2d3920902c12330a53f831d7916a1461926c0efd3b7929416bd04c78b0\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.3.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.3.1-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==12.0.1)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.3.1\"\n \ - \ },\n \"sha256Digest\": \"c7040d903665c23b592462225ad32bdff90af40a99fa73ba440b87857c3e1e5b\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.3.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.3.0-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==12.0.1)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.3.0\"\n \ - \ },\n \"sha256Digest\": \"abb61b170c3b830212f12bcb199e5d5106e7cb6ff880b7f7793ce1359667d072\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.2.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.2.3-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==12.0.1)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.2.3\"\n \ - \ },\n \"sha256Digest\": \"b4757151ad2796cac8fcc43a363c0fbbf5de270f043d8fd8ccd51b377abfd61c\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.2.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.2.2-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==12.0.1)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.2.2\"\n \ - \ },\n \"sha256Digest\": \"2011cf5d186b713df3b14c09cfb63e52e843c015f0cc4a7ff558b161c9e225cf\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.2.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.2.1-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==3.0.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==12.0.1)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.2.1\"\n \ - \ },\n \"sha256Digest\": \"0d5bfcbed4e418f5ce79377a2e392f5f61abb0d5e6f8ce164940b83b5cfdbcd5\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.2.0-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==2.10.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==12.0.1)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.2.0\"\n \ - \ },\n \"sha256Digest\": \"308d953ecabc7b59fa6b3e545404279bc18376b8c129580124c443e866e3cb54\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.1.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.1.3-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==2.10.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==12.0.1)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.1.3\"\n \ - \ },\n \"sha256Digest\": \"63573d92742ab3ff2cdb73de39ea17821d3044503382c528e39a28f6224b8acb\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.1.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.1.2-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"colorama (==0.4.4)\"\ - ,\n \"jinja2 (==2.10.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==12.0.1)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.1.2\"\n \ - \ },\n \"sha256Digest\": \"ffcb38d3653195dc30ce93066b5aff3ff7037be81232db4afcb11ef99f3de844\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.1.1-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-mgmt-azurearcdata\"\ - ,\n \"colorama (==0.4.4)\",\n \ - \ \"jinja2 (==2.10.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \"jsonpath-ng\ - \ (==1.4.3)\",\n \"jsonschema (==3.2.0)\",\n\ - \ \"kubernetes (==12.0.1)\",\n \ - \ \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"pydash (==4.8.0)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Tools for managing ArcData.\"\ - ,\n \"version\": \"1.1.1\"\n },\n \ - \ \"sha256Digest\": \"1cb2dcfadd539cdc7f6acbfcd44db5f7d380ec9a896f5eaa47ebabbe89786d07\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.1.0-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-mgmt-azurearcdata\"\ - ,\n \"jinja2 (==2.10.3)\",\n \ - \ \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \"jsonschema\ - \ (==3.2.0)\",\n \"kubernetes (==12.0.1)\"\ - ,\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \"\ - pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Tools for\ - \ managing ArcData.\",\n \"version\": \"1.1.0\"\n \ - \ },\n \"sha256Digest\": \"dedb4ac6de099d8fd565d427ac339cc23a10be76ca0147f6babec6096fc377e7\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.0.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-1.0.0-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"arcdata\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"jinja2 (==2.10.3)\"\ - ,\n \"jsonpatch (==1.24)\",\n \ - \ \"jsonpath-ng (==1.4.3)\",\n \ - \ \"jsonschema (==3.2.0)\",\n \"kubernetes\ - \ (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \ - \ \"pem (==21.2.0)\",\n \ - \ \"pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Tools for managing ArcData.\",\n \"version\": \"1.0.0\"\ - \n },\n \"sha256Digest\": \"4045fabe61c0287003a4626d0f8d27c2839b3575a63ce2bdfe57ed214171acf8\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-0.0.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-0.0.2-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.isPreview\": true,\n \ - \ \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\"\ - : [\n \"Development Status :: 1 - Beta\",\n \ - \ \"Intended Audience :: Developers\",\n \ - \ \"Programming Language :: Python\",\n \"Programming\ - \ Language :: Python :: 3\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"Programming Language :: Python\ - \ :: 3.7\",\n \"Programming Language :: Python :: 3.8\"\ - ,\n \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"dpgswdist@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://docs.microsoft.com/en-us/sql/sql-server/azure-arc/overview?view=sql-server-ver15\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"\ - metadata_version\": \"2.0\",\n \"name\": \"arcdata\",\n\ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"jinja2 (==2.10.3)\",\n \"jsonpatch (==1.24)\"\ - ,\n \"jsonpath-ng (==1.4.3)\",\n \ - \ \"jsonschema (==3.2.0)\",\n \ - \ \"kubernetes (==12.0.1)\",\n \"ndjson\ - \ (==0.3.1)\",\n \"pydash (==4.8.0)\"\n \ - \ ]\n }\n \ - \ ],\n \"summary\": \"Tools for managing ArcData.\",\n\ - \ \"version\": \"0.0.2\"\n },\n \ - \ \"sha256Digest\": \"d14aa3046b7a9c3bca67c735eeb35fb24ff5ed240212724d3f229eb23280abae\"\ - \n },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-0.0.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"arcdata-0.0.1-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 1 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"dpgswdist@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/en-us/sql/sql-server/azure-arc/overview?view=sql-server-ver15\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"license_file\": \"LICENSE\",\n \"\ - metadata_version\": \"2.0\",\n \"name\": \"arcdata\",\n\ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"jinja2 (==2.10.3)\",\n \"jsonpatch (==1.24)\"\ - ,\n \"jsonpath-ng (==1.4.3)\",\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pydash (==4.8.0)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Tools for managing ArcData.\",\n \"version\": \"0.0.1\"\ - \n },\n \"sha256Digest\": \"e727a7bf123aa15b406455f268be8a906907d6d32bd314d122b83d006767adc8\"\ - \n }\n ],\n \"attestation\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/attestation-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"attestation-0.1.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/attestation\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"attestation\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AttestationManagementClient\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"1d4e9b832a3f50b33428d565478a2e655c81d49277c07dc909f1485b62ba5372\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/attestation-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"attestation-0.2.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/attestation\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"attestation\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"pyjwt (==1.7.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AttestationManagementClient\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"895328b45d8bcfe45e4937885572cd1f39d23bc49f88314713a462bf1a367cc9\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/attestation-0.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"attestation-0.2.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/attestation\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"attestation\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"pyjwt (==1.7.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AttestationManagementClient\ - \ Extension\",\n \"version\": \"0.2.1\"\n \ - \ },\n \"sha256Digest\": \"1176c4e5d1d34a791f301ee6416e695e781eee3f41d0f372463405c68478727c\"\ - \n }\n ],\n \"authV2\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/authV2-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"authV2-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.23.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/authV2\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"authV2\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Authv2 Extension\",\n\ - \ \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"240b7f5f1ac3fc2a72586cde8ff8cc2d2f469a1b6c6378822129b33233c0d7b7\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/authV2-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"authV2-0.1.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.23.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/authV2\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"authV2\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Authv2 Extension\",\n\ - \ \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"0beb143e3ca4f4f9706877d416b07cb9f9796bd696a0a642825d8ca48217edb0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/authV2-0.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"authV2-0.1.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.23.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/authV2\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"authV2\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Authv2 Extension\",\n\ - \ \"version\": \"0.1.2\"\n },\n \ - \ \"sha256Digest\": \"b98f07b7b669416ef4386d2a0834364a6c8d0278ddfffd35c1be5eb931968d5b\"\ - \n }\n ],\n \"automanage\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/automanage-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"automanage-0.1.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/automanage\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"automanage\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Automanage Extension.\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"ca6771604ac50df02682f581b52ca92d775f0fd2f187f627a6bfe62d4fdb6651\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/automanage-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"automanage-0.1.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/automanage\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"automanage\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Automanage Extension.\"\ - ,\n \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"40c62cf4389bc282e4c06d0f2688087efb4a8ca6bb7a2b37fc6befb79dc2c526\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/automanage-0.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"automanage-0.1.2-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.44.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/automanage\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"automanage\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Automanage Extension.\"\ - ,\n \"version\": \"0.1.2\"\n },\n \ - \ \"sha256Digest\": \"42341a6cfdacb3af0433b10b3e9bcb5226d4c7fb59730378408a957662266551\"\ - \n }\n ],\n \"automation\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/automation-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"automation-0.1.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/automation\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"automation\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AutomationClient\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"779f996ffab9fd76438d8938216fcbeb6f9aecad3a23bd2097731182607e4d7a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/automation-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"automation-0.1.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/automation\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"automation\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AutomationClient\ - \ Extension\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"99640d86e3596a806ea2eca6b8f67f02fea74951ffa0606bff60fbfc88da7d6e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/automation-0.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"automation-0.1.2-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.39.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/automation\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"automation\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AutomationClient\ - \ Extension\",\n \"version\": \"0.1.2\"\n \ - \ },\n \"sha256Digest\": \"1188040d2b9bef20051619c919db3726c38e1d9720c7e375418fbdec714d4309\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/automation-0.1.3-py3-none-any.whl\"\ - ,\n \"filename\": \"automation-0.1.3-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.39.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/automation\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"automation\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AutomationClient\ - \ Extension\",\n \"version\": \"0.1.3\"\n \ - \ },\n \"sha256Digest\": \"c28dd73a8ab147f2d268bb735e8658f78b60bf6d628904158b0c0e80c8cfcf18\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/automation-0.1.4-py3-none-any.whl\"\ - ,\n \"filename\": \"automation-0.1.4-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.39.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/automation\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"automation\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AutomationClient\ - \ Extension\",\n \"version\": \"0.1.4\"\n \ - \ },\n \"sha256Digest\": \"cf27c3366e48ad1758a30745d1cd05703b15c84d0fa95369c4a098620ff93df8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/automation-0.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"automation-0.2.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.40.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/automation\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"automation\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AutomationClient\ - \ Extension\",\n \"version\": \"0.2.1\"\n \ - \ },\n \"sha256Digest\": \"18cb0bfa7c7121bd7afdceea2182ac0fe3b174933bbb897b023c61e9dc05459b\"\ - \n }\n ],\n \"azure-batch-cli-extensions\": [\n \ - \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-2.5.3/azure_batch_cli_extensions-2.5.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_batch_cli_extensions-2.5.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.maxCliCoreVersion\"\ - : \"2.0.58\",\n \"azext.minCliCoreVersion\": \"2.0.24\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-batch-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-batch-cli-extensions\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-batch-extensions (<4.1,>=4.0.0)\",\n \ - \ \"pycparser (==2.18)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Additional commands for working with Azure Batch service\",\n \ - \ \"version\": \"2.5.3\"\n },\n \"\ - sha256Digest\": \"cc30b985edd5de0233d4fd283cfa29390d119c223b2f819ca36e071f759d5485\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-3.0.4/azure_batch_cli_extensions-3.0.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_batch_cli_extensions-3.0.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.maxCliCoreVersion\"\ - : \"2.1.0\",\n \"azext.minCliCoreVersion\": \"2.0.59\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-batch-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-batch-cli-extensions\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-batch-extensions (<5.1,>=5.0.0)\",\n \ - \ \"pycparser (==2.18)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Additional commands for working with Azure Batch service\",\n \ - \ \"version\": \"3.0.4\"\n },\n \"\ - sha256Digest\": \"9e76b7242934ceb8ae48c65f5469312522a034f4abf66d4771fb721aee04a502\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-4.0.0/azure_batch_cli_extensions-4.0.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_batch_cli_extensions-4.0.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.maxCliCoreVersion\"\ - : \"2.1.0\",\n \"azext.minCliCoreVersion\": \"2.0.69\"\ - ,\n \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-batch-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-batch-cli-extensions\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-batch-extensions (<6.1,>=6.0.0)\",\n \ - \ \"pycparser (==2.18)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Additional commands for working with Azure Batch service\",\n \ - \ \"version\": \"4.0.0\"\n },\n \"\ - sha256Digest\": \"3045dc24858b9acfed13a517038830ddc643aef779de0d14617c49c9fd2dcbd5\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-5.0.1/azure_batch_cli_extensions-5.0.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_batch_cli_extensions-5.0.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.maxCliCoreVersion\"\ - : \"3.0.0\",\n \"azext.minCliCoreVersion\": \"2.0.73\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-batch-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-batch-cli-extensions\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-batch-extensions (<7.1,>=7.0.0)\",\n \ - \ \"pycparser (==2.18)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Additional commands for working with Azure Batch service\",\n \ - \ \"version\": \"5.0.1\"\n },\n \"\ - sha256Digest\": \"bf07b63782e0f6446302971afaf8b5ec5bb6dbc00449bf3276511993abf8cd61\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-6.0.0/azure_batch_cli_extensions-6.0.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_batch_cli_extensions-6.0.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.maxCliCoreVersion\"\ - : \"3.0.0\",\n \"azext.minCliCoreVersion\": \"2.0.74\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-batch-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-batch-cli-extensions\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-batch-extensions (<8.1,>=8.0.0)\",\n \ - \ \"pycparser (==2.18)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Additional commands for working with Azure Batch service\",\n \ - \ \"version\": \"6.0.0\"\n },\n \"\ - sha256Digest\": \"6955a0d960d9c4df6935b9058f67c8c42872c8716d8d2a4f76e9e6ce72eb66ab\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-7.0.0/azure_batch_cli_extensions-7.0.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_batch_cli_extensions-7.0.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.30.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 2\",\n \"Programming Language :: Python :: 2.7\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-batch-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-batch-cli-extensions\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-batch-extensions (<9.1,>=9.0.0)\",\n \ - \ \"pycparser (==2.18)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Additional commands for working with Azure Batch service\",\n \ - \ \"version\": \"7.0.0\"\n },\n \"\ - sha256Digest\": \"65dd7671262b1f0cf35b26970a816d7aea22d02c822c81f3ea4cf1028a7c2e16\"\ - \n }\n ],\n \"azure-cli-ml\": [\n {\n\ - \ \"downloadUrl\": \"https://azurecliext.blob.core.windows.net/release/azure_cli_ml-1.41.0-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_cli_ml-1.41.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 3 - Alpha\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python :: 3.5\",\n \"Programming Language :: Python\ - \ :: 3.6\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\",\n \"license\": \"LICENSE.txt\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://docs.microsoft.com/python/api/overview/azure/ml/?view=azure-ml-py\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"Proprietary\ - \ https://aka.ms/azureml-preview-sdk-license \",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-cli-ml\",\n \ - \ \"requires_python\": \">=3.5,<4\",\n \"run_requires\"\ - : [\n {\n \"requires\":\ - \ [\n \"adal (>=1.2.1)\",\n \ - \ \"azureml-cli-common (~=1.41)\",\n \ - \ \"cryptography (<=3.3.2)\",\n \"\ - docker (>=3.7.2)\",\n \"msrest (>=0.6.6)\"\ - ,\n \"pyyaml (>=5.1.0)\",\n \ - \ \"requests (>=2.21.0)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools AzureML Command Module\",\n\ - \ \"test_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-keyvault\",\n \"mock\",\n \ - \ \"nose\",\n \"unittest-xml-reporting\"\ - \n ]\n }\n \ - \ ],\n \"version\": \"1.41.0\"\n },\n\ - \ \"sha256Digest\": \"c3c5d2bb5ecd63d0d416bf9bc61b9f12df247d2f558957047ffc431e42fcb6b0\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliext.blob.core.windows.net/release/azure_cli_ml-1.37.0-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_cli_ml-1.37.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 3 - Alpha\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python :: 3.5\",\n \"Programming Language :: Python\ - \ :: 3.6\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\",\n \"license\": \"LICENSE.txt\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://docs.microsoft.com/python/api/overview/azure/ml/?view=azure-ml-py\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"Proprietary\ - \ https://aka.ms/azureml-preview-sdk-license \",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-cli-ml\",\n \ - \ \"requires_python\": \">=3.5,<4\",\n \"run_requires\"\ - : [\n {\n \"requires\":\ - \ [\n \"adal (>=1.2.1)\",\n \ - \ \"azureml-cli-common (~=1.37.0)\",\n \ - \ \"cryptography (<=3.3.2)\",\n \ - \ \"docker (>=3.7.2)\",\n \"msrest (>=0.6.6)\"\ - ,\n \"pyyaml (>=5.1.0)\",\n \ - \ \"requests (>=2.21.0)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools AzureML Command Module\",\n\ - \ \"test_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-keyvault\",\n \"mock\",\n \ - \ \"nose\",\n \"unittest-xml-reporting\"\ - \n ]\n }\n \ - \ ],\n \"version\": \"1.37.0\"\n },\n\ - \ \"sha256Digest\": \"7dc527ad16592a775d79341d7711df31497b66bf616010890bd1f8831c81012d\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliext.blob.core.windows.net/release/azure_cli_ml-1.5.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_cli_ml-1.5.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.maxCliCoreVersion\"\ - : \"2.29.2\",\n \"azext.minCliCoreVersion\": \"2.0.28\"\ - ,\n \"classifiers\": [\n \"Development\ - \ Status :: 3 - Alpha\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\",\n \"license\": \"LICENSE.txt\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://docs.microsoft.com/azure/machine-learning/service/\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"Proprietary\ - \ https://aka.ms/azureml-preview-sdk-license \",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-cli-ml\",\n \ - \ \"requires_python\": \">=3.5,<4\",\n \"run_requires\"\ - : [\n {\n \"requires\":\ - \ [\n \"adal (>=1.2.1)\",\n \ - \ \"azureml-cli-common (~=1.5.0)\",\n \ - \ \"docker (>=3.7.2)\",\n \"msrest\ - \ (>=0.6.6)\",\n \"pyyaml (>=5.1.0)\",\n \ - \ \"requests (>=2.21.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureML Command\ - \ Module\",\n \"test_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-keyvault\",\n \"mock\"\ - ,\n \"nose\",\n \ - \ \"unittest-xml-reporting\"\n ]\n \ - \ }\n ],\n \"version\"\ - : \"1.5.0\"\n },\n \"sha256Digest\": \"a535f01501a06f70d26a75f5ccde2d32640d3c7efec302fc2fc454bfb867e946\"\ - \n }\n ],\n \"azure-devops\": [\n {\n\ - \ \"downloadUrl\": \"https://github.com/Azure/azure-devops-cli-extension/releases/download/20190805.1/azure_devops-0.12.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_devops-0.12.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.49\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 2\",\n \"Programming Language :: Python :: 2.7\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"VSTS_Social@microsoft.com\"\ - ,\n \"name\": \"Microsoft\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Microsoft/azure-devops-cli-extension\"\n \ - \ }\n }\n },\n\ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\"\ - : \"azure-devops\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"distro (==1.3.0)\",\n \ - \ \"msrest (<0.7.0,>=0.6.0)\",\n \"python-dateutil\ - \ (==2.7.3)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Tools for managing\ - \ Azure DevOps.\",\n \"version\": \"0.12.0\"\n \ - \ },\n \"sha256Digest\": \"2abdfd1b760e1968176cd4043e2db7edf951978c6a2182eb5e79bb0c8070af4c\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-devops-cli-extension/releases/download/20200113.1/azure_devops-0.17.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_devops-0.17.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.69\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 2\",\n \"Programming Language :: Python :: 2.7\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"VSTS_Social@microsoft.com\"\ - ,\n \"name\": \"Microsoft\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Microsoft/azure-devops-cli-extension\"\n \ - \ }\n }\n },\n\ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\"\ - : \"azure-devops\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"distro (==1.3.0)\",\n \ - \ \"msrest (<0.7.0,>=0.6.0)\",\n \"python-dateutil\ - \ (==2.7.3)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Tools for managing\ - \ Azure DevOps.\",\n \"version\": \"0.17.0\"\n \ - \ },\n \"sha256Digest\": \"1e891afc8b6ee52c62c4f99802d77728ff60e89e4c08972325178cc4fdac6be9\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-devops-cli-extension/releases/download/20211028.1/azure_devops-0.21.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_devops-0.21.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.2.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.4\"\ - ,\n \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"VSTS_Social@microsoft.com\",\n \ - \ \"name\": \"Microsoft\",\n \"role\"\ - : \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Microsoft/azure-devops-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"azure-devops\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"distro (==1.3.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Tools for managing Azure DevOps.\",\n \ - \ \"version\": \"0.21.0\"\n },\n \"sha256Digest\"\ - : \"7ab5fd8d8f05bbd78d2e5fce961a06380aa258445561b88fb1ca02261cae365a\"\n \ - \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-devops-cli-extension/releases/download/20230127.2/azure_devops-0.26.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_devops-0.26.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.30.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.4\"\ - ,\n \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"VSTS_Social@microsoft.com\",\n \ - \ \"name\": \"Microsoft\",\n \"role\"\ - : \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Microsoft/azure-devops-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"azure-devops\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"distro (==1.3.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Tools for managing Azure DevOps.\",\n \ - \ \"version\": \"0.26.0\"\n },\n \"sha256Digest\"\ - : \"565fc207f1740c26957f382fe2eefabec254011fb2d1b50c0e540f894f47dcbe\"\n \ - \ }\n ],\n \"azure-firewall\": [\n {\n\ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.1.3\"\n },\n \"\ - sha256Digest\": \"116c1324206e8aa0e7cffdd719a12e87b2977a061fcd9fb96ae4b6fbe223e93f\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.1.9-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.1.9-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.1.9\"\n },\n \"\ - sha256Digest\": \"f20c18b5b176dd39815dee4d344368774b58bb2f4f03c28b89ee08212e45856a\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.2.0\"\n },\n \"\ - sha256Digest\": \"7934510bc2ed4d83c8dbee7d2d22c3de2332b96020e2f45515035153f94a246f\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.3.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.3.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.3.0\"\n },\n \"\ - sha256Digest\": \"12e5f8567ba8a74988f50ec6ed3539fad5b9e491727b0bc2c16e7acc34f49423\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.3.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.3.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.3.1\"\n },\n \"\ - sha256Digest\": \"32e10a4e96a891151959680ff3cbf3e28ea0cf38e49ac062c49c668d00e5d7d7\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.4.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.4.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.4.0\"\n },\n \"\ - sha256Digest\": \"5c79cedfc5abf134f4b47ad5d867ff5852d2ba17f710d44a2101fe0aa51b1a48\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.5.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.5.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.5.0\"\n },\n \"\ - sha256Digest\": \"ceb70fe380937e5cb42998648a3218313b1425286705743275a808bb15d70d03\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.5.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.5.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.5.1\"\n },\n \"\ - sha256Digest\": \"40581d4aaf52a8a1f8deccf3be641385348251b34ffeb4c65193111150002699\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.6.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.6.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.6.0\"\n },\n \"\ - sha256Digest\": \"b22c81a341f1742ebb2c32c45af1470b12bfe2d03907d43206cf8d0860e058f6\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.6.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.6.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.6.1\"\n },\n \"\ - sha256Digest\": \"4bf18f81d1b97d458181154f51803103745182cf68972180507aa8c291c60a94\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.6.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.6.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.6.2\"\n },\n \"\ - sha256Digest\": \"30539d78089ae73cbc012d487de7b9e9717096e2abf960ca4e7057ef77222a25\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.7.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.7.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.7.0\"\n },\n \"\ - sha256Digest\": \"b6ac17ae8f18d9c702cece94822c0d00dbc13b7ed60a7831281e2e5391cefe39\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.8.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.8.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.8.0\"\n },\n \"\ - sha256Digest\": \"897e1ff2ff69b6f2969dc97e97847a25b7a9060091024a96e0e2ca0876c0cd53\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.9.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.9.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.9.0\"\n },\n \"\ - sha256Digest\": \"ea9f1a318e27266652bb6121d93ff5595b2ffe1227efc3ca1ab69b29349bb9d2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.10.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.10.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.10.0\"\n },\n \"\ - sha256Digest\": \"94c5b15b65b3fe78fa4a10b839ace1a5eb627e87f4aae2bc5728e159388c9599\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.11.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.11.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.11.0\"\n },\n \"\ - sha256Digest\": \"31100b4d554939502454bf9dbe0a42e2ee4319a1af3f9c93c9b51200bb547707\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.12.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.12.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.12.0\"\n },\n \"\ - sha256Digest\": \"e8273165377adcbc1effcaaa447d4b7b38c49aadd1ff9255cabf400f6846edb4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.13.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.13.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.13.0\"\n },\n \"\ - sha256Digest\": \"04e0761aeed15ac457c5831c89bcbaf5f669fa943ded8f71c0f54431621103b0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.14.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.14.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.14.0\"\n },\n \"\ - sha256Digest\": \"c68453741e1c32f310333f81a22ab8a822124101c36e043b6563105a9c84f2e2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.14.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.14.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.14.1\"\n },\n \"\ - sha256Digest\": \"bc32e5ea361f86fd03ec6a6d7743ed431038fcacfd85e48bdc3c1996448fc08d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.14.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.14.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.14.2\"\n },\n \"\ - sha256Digest\": \"35ac3318f0372b890770746c320cc3d98022a08bd808e3aa433d2dcf20405bf6\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.14.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.14.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.14.3\"\n },\n \"\ - sha256Digest\": \"a1838d2953400b76c7bca95ef9b6c64377d8b3d2485f2164e286906c62f9ef5b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.14.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.14.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.14.4\"\n },\n \"\ - sha256Digest\": \"1b2dfdf90570df596e28792d1b378bb155cd57b2fad8fbb6eeb1617316bce2e0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.14.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.14.5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"project_urls\": {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.14.5\"\n },\n \"\ - sha256Digest\": \"d2261b7a6a17f8a15d4fbfb1f3bb65bada2e49c76c251f3e91f9a91c9d613188\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.14.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.14.6-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"project_urls\": {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.14.6\"\n },\n \"\ - sha256Digest\": \"c04bfce1c7acbeb50a6f156965bbf64336c9089235b27bb4ca5b50a065bc19d6\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.14.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.14.7-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"project_urls\": {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.14.7\"\n },\n \"\ - sha256Digest\": \"a248d1a3fa776015726cc3c9a073c816afef9f174309f6c0f65787d624e2337b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.14.8-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_firewall-0.14.8-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"project_urls\": {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-firewall\",\n \ - \ \"summary\": \"Manage Azure Firewall resources.\",\n \ - \ \"version\": \"0.14.8\"\n },\n \"\ - sha256Digest\": \"d664c8228e829d1a70a85146a8b46d0e26abae22e0765a0277e18c4e664d8200\"\ - \n }\n ],\n \"azure-iot\": [\n {\n \ - \ \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.10.11/azure_iot-0.10.11-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.10.11-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"iotupx@microsoft.com\",\n \"\ - name\": \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"azure-iot\",\n \"requires_python\": \">=3.6,<4\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"jsonschema (==3.2.0)\",\n \"packaging\"\ - ,\n \"paho-mqtt (==1.5.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"The Azure IoT extension for Azure CLI.\"\ - ,\n \"version\": \"0.10.11\"\n },\n \ - \ \"sha256Digest\": \"8a7892996403fd5fd6850262acc176605704990db9d0a95c743545f1c0659d83\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.10.15/azure_iot-0.10.15-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.10.15-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.17.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"iotupx@microsoft.com\",\n \"\ - name\": \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"azure-iot\",\n \"requires_python\": \">=3.6,<4\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"jsonschema (==3.2.0)\",\n \"packaging\"\ - ,\n \"paho-mqtt (==1.5.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"The Azure IoT extension for Azure CLI.\"\ - ,\n \"version\": \"0.10.15\"\n },\n \ - \ \"sha256Digest\": \"465b8a2688260973519c00dd48989faa015423b195d20efb423e976c49924983\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.10.17/azure_iot-0.10.17-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.10.17-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.17.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"iotupx@microsoft.com\",\n \"\ - name\": \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.6,<4\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-iot-device\ - \ (~=2.5)\",\n \"jsonschema (~=3.2.0)\",\n\ - \ \"packaging\",\n \ - \ \"tqdm (~=4.62)\"\n ]\n \ - \ },\n {\n \"extra\"\ - : \"uamqp\",\n \"requires\": [\n \ - \ \"uamqp (~=1.2)\"\n ]\n \ - \ },\n {\n \ - \ \"environment\": \"python_version < \\\"3.8\\\"\",\n \ - \ \"requires\": [\n \"importlib-metadata\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"The Azure IoT extension for\ - \ Azure CLI.\",\n \"version\": \"0.10.17\"\n \ - \ },\n \"sha256Digest\": \"71f449108419e66f4b8f72a0d9b544e7a38c7fc4b3fdfcab9a9088dff3190710\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.11.0/azure_iot-0.11.0-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.11.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.17.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"iotupx@microsoft.com\",\n \"\ - name\": \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.6,<4\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-iot-device\ - \ (~=2.5)\",\n \"jsonschema (~=3.2.0)\",\n\ - \ \"packaging\",\n \ - \ \"tqdm (~=4.62)\"\n ]\n \ - \ },\n {\n \"extra\"\ - : \"uamqp\",\n \"requires\": [\n \ - \ \"uamqp (~=1.2)\"\n ]\n \ - \ },\n {\n \ - \ \"environment\": \"python_version < \\\"3.8\\\"\",\n \ - \ \"requires\": [\n \"importlib-metadata\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"The Azure IoT extension for\ - \ Azure CLI.\",\n \"version\": \"0.11.0\"\n \ - \ },\n \"sha256Digest\": \"b599137425d8b0df615813b9cbedb02d43549acf3ae0c9a703f5d636cf05ebf9\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.12.1/azure_iot-0.12.1-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.12.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.17.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \"\ - python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.6,<4\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-iot-device\ - \ (~=2.5)\",\n \"jsonschema (~=3.2.0)\",\n\ - \ \"msrestazure (<2.0.0,>=0.6.3)\",\n \ - \ \"packaging\",\n \ - \ \"tqdm (~=4.62)\"\n ]\n \ - \ },\n {\n \"extra\"\ - : \"uamqp\",\n \"requires\": [\n \ - \ \"uamqp (~=1.2)\"\n ]\n \ - \ },\n {\n \ - \ \"environment\": \"python_version < \\\"3.8\\\"\",\n \ - \ \"requires\": [\n \"importlib-metadata\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"The Azure IoT extension for\ - \ Azure CLI.\",\n \"version\": \"0.12.1\"\n \ - \ },\n \"sha256Digest\": \"4cc809c496ecda0c892b664d0d1de58586b56db9211c3d12c96c640bf8d8c84f\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.13.0/azure_iot-0.13.0-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.13.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \"\ - python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.6,<4\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-iot-device\ - \ (~=2.5)\",\n \"jsonschema (~=3.2.0)\",\n\ - \ \"msrestazure (<2.0.0,>=0.6.3)\",\n \ - \ \"packaging\",\n \ - \ \"tqdm (~=4.62)\"\n ]\n \ - \ },\n {\n \"extra\"\ - : \"uamqp\",\n \"requires\": [\n \ - \ \"uamqp (~=1.2)\"\n ]\n \ - \ },\n {\n \ - \ \"environment\": \"python_version < \\\"3.8\\\"\",\n \ - \ \"requires\": [\n \"importlib-metadata\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"The Azure IoT extension for\ - \ Azure CLI.\",\n \"version\": \"0.13.0\"\n \ - \ },\n \"sha256Digest\": \"a8078483a23ed656cb79816dc8e7c39f3c18a04945b4366edc99a76897419bd2\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.14.0/azure_iot-0.14.0-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.14.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \"\ - python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.6,<4\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-iot-device\ - \ (~=2.5)\",\n \"jsonschema (~=3.2.0)\",\n\ - \ \"msrestazure (<2.0.0,>=0.6.3)\",\n \ - \ \"packaging\",\n \ - \ \"tqdm (~=4.62)\"\n ]\n \ - \ },\n {\n \"extra\"\ - : \"uamqp\",\n \"requires\": [\n \ - \ \"uamqp (~=1.2)\"\n ]\n \ - \ },\n {\n \ - \ \"environment\": \"python_version < \\\"3.8\\\"\",\n \ - \ \"requires\": [\n \"importlib-metadata\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"The Azure IoT extension for\ - \ Azure CLI.\",\n \"version\": \"0.14.0\"\n \ - \ },\n \"sha256Digest\": \"56e07939e0f60412c8dce20a278127be4768a4cd8c487e5201396428e1b2f86f\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.14.1/azure_iot-0.14.1-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.14.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \"\ - python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.6,<4\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-iot-device\ - \ (~=2.5)\",\n \"jsonschema (~=3.2.0)\",\n\ - \ \"msrestazure (<2.0.0,>=0.6.3)\",\n \ - \ \"packaging\",\n \ - \ \"tqdm (~=4.62)\"\n ]\n \ - \ },\n {\n \"extra\"\ - : \"uamqp\",\n \"requires\": [\n \ - \ \"uamqp (~=1.2)\"\n ]\n \ - \ },\n {\n \ - \ \"environment\": \"python_version < \\\"3.8\\\"\",\n \ - \ \"requires\": [\n \"importlib-metadata\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"The Azure IoT extension for\ - \ Azure CLI.\",\n \"version\": \"0.14.1\"\n \ - \ },\n \"sha256Digest\": \"9138b2610ac1ad775d4012e532cfa273a2d56dc2a649aa71d838f3c26d74b77d\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.15.0/azure_iot-0.15.0-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.15.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.30.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3 :: Only\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.7\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-iot-device\ - \ (~=2.11)\",\n \"azure-mgmt-core (<2.0.0,>=1.3.0)\"\ - ,\n \"jsonschema (~=3.2.0)\",\n \ - \ \"msrest (>=0.6.21)\",\n \ - \ \"msrestazure (<2.0.0,>=0.6.3)\",\n \"\ - packaging\",\n \"tqdm (~=4.62)\"\n \ - \ ]\n },\n \ - \ {\n \"extra\": \"uamqp\",\n \ - \ \"requires\": [\n \"uamqp (~=1.2)\"\ - \n ]\n },\n \ - \ {\n \"environment\": \"python_version\ - \ < \\\"3.8\\\"\",\n \"requires\": [\n \ - \ \"importlib-metadata\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n \ - \ \"version\": \"0.15.0\"\n },\n \ - \ \"sha256Digest\": \"63243fc8edb3a38636d706fc280a95aa13e7dfc1be455f62e41af1c114260049\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.16.1/azure_iot-0.16.1-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.16.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.30.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3 :: Only\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.7\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-iot-device\ - \ (~=2.11)\",\n \"azure-mgmt-core (<2.0.0,>=1.3.0)\"\ - ,\n \"jsonschema (~=3.2.0)\",\n \ - \ \"msrest (>=0.6.21)\",\n \ - \ \"msrestazure (<2.0.0,>=0.6.3)\",\n \"\ - packaging\",\n \"tqdm (~=4.62)\"\n \ - \ ]\n },\n \ - \ {\n \"extra\": \"uamqp\",\n \ - \ \"requires\": [\n \"uamqp (~=1.2)\"\ - \n ]\n },\n \ - \ {\n \"environment\": \"python_version\ - \ < \\\"3.8\\\"\",\n \"requires\": [\n \ - \ \"importlib-metadata\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n \ - \ \"version\": \"0.16.1\"\n },\n \ - \ \"sha256Digest\": \"d6c814af4bdc4020bbb2971f718796fac0e12a4319258e6704d711c2f9adca38\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.17.0/azure_iot-0.17.0-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.17.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.30.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3 :: Only\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.7\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-core (<2.0.0,<2.0.0azure-mgmt-core>=1.3.0,>=1.24.0)\"\ - ,\n \"azure-iot-device (~=2.11)\",\n \ - \ \"jsonschema (~=3.2.0)\",\n \ - \ \"msrest (>=0.6.21)\",\n \"msrestazure\ - \ (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \ - \ \"tqdm (~=4.62)\"\n \ - \ ]\n },\n {\n \ - \ \"extra\": \"uamqp\",\n \"\ - requires\": [\n \"uamqp (~=1.2)\"\n \ - \ ]\n },\n \ - \ {\n \"environment\": \"python_version < \\\ - \"3.8\\\"\",\n \"requires\": [\n \ - \ \"importlib-metadata\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"The Azure IoT extension for Azure CLI.\",\n \ - \ \"version\": \"0.17.0\"\n },\n \"sha256Digest\"\ - : \"924d4cf255efe8a8950d968ed474be42b9da790c46381893a1d2892fdf72281e\"\n \ - \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.17.1/azure_iot-0.17.1-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.17.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.30.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3 :: Only\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.7\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-core (<2.0.0,>=1.24.0)\"\ - ,\n \"azure-iot-device (~=2.11)\",\n \ - \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \ - \ \"jsonschema (~=3.2.0)\",\n \ - \ \"msrest (>=0.6.21)\",\n \"msrestazure\ - \ (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \ - \ \"tqdm (~=4.62)\"\n \ - \ ]\n },\n {\n \ - \ \"extra\": \"uamqp\",\n \"\ - requires\": [\n \"uamqp (~=1.2)\"\n \ - \ ]\n },\n \ - \ {\n \"environment\": \"python_version < \\\ - \"3.8\\\"\",\n \"requires\": [\n \ - \ \"importlib-metadata\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"The Azure IoT extension for Azure CLI.\",\n \ - \ \"version\": \"0.17.1\"\n },\n \"sha256Digest\"\ - : \"5edb56987e339e6eac50190d309e8b62f1da8e76c943537b8bdf45833d2d6307\"\n \ - \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.17.3/azure_iot-0.17.3-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.17.3-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.30.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3 :: Only\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.7\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-core (<2.0.0,>=1.24.0)\"\ - ,\n \"azure-iot-device (~=2.11)\",\n \ - \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \ - \ \"jsonschema (~=3.2.0)\",\n \ - \ \"msrest (>=0.6.21)\",\n \"msrestazure\ - \ (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \ - \ \"tqdm (~=4.62)\"\n \ - \ ]\n },\n {\n \ - \ \"extra\": \"uamqp\",\n \"\ - requires\": [\n \"uamqp (~=1.2)\"\n \ - \ ]\n },\n \ - \ {\n \"environment\": \"python_version < \\\ - \"3.8\\\"\",\n \"requires\": [\n \ - \ \"importlib-metadata\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"The Azure IoT extension for Azure CLI.\",\n \ - \ \"version\": \"0.17.3\"\n },\n \"sha256Digest\"\ - : \"bf343936bd2f515c46d8cff9b59cc340eb88c0ee2f4be93fe9d2a9d4ba863346\"\n \ - \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.18.0/azure_iot-0.18.0-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.18.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.32.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3 :: Only\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.7\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-core (<2.0.0,>=1.24.0)\"\ - ,\n \"azure-identity (<2.0.0,>=1.6.1)\",\n\ - \ \"azure-iot-device (~=2.11)\",\n \ - \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \ - \ \"jsonschema (~=3.2.0)\",\n \ - \ \"msrest (>=0.6.21)\",\n \"msrestazure\ - \ (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \ - \ \"tqdm (~=4.62)\"\n \ - \ ]\n },\n {\n \ - \ \"extra\": \"uamqp\",\n \"\ - requires\": [\n \"uamqp (~=1.2)\"\n \ - \ ]\n },\n \ - \ {\n \"environment\": \"python_version < \\\ - \"3.8\\\"\",\n \"requires\": [\n \ - \ \"importlib-metadata\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"The Azure IoT extension for Azure CLI.\",\n \ - \ \"version\": \"0.18.0\"\n },\n \"sha256Digest\"\ - : \"b57987fe6b4627d4184db54715e71f5a28d7b16fb346352a37c0bf1ea5f4640e\"\n \ - \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.18.1/azure_iot-0.18.1-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.18.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.32.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3 :: Only\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.7\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-core (<2.0.0,>=1.24.0)\"\ - ,\n \"azure-identity (<2.0.0,>=1.6.1)\",\n\ - \ \"azure-iot-device (~=2.11)\",\n \ - \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \ - \ \"azure-storage-blob (<13.0.0,>=12.14.0)\",\n \ - \ \"jsonschema (~=3.2.0)\",\n \ - \ \"msrest (>=0.6.21)\",\n \"\ - msrestazure (<2.0.0,>=0.6.3)\",\n \"packaging\"\ - ,\n \"tqdm (~=4.62)\"\n \ - \ ]\n },\n {\n \ - \ \"extra\": \"uamqp\",\n \ - \ \"requires\": [\n \"uamqp (~=1.2)\"\n \ - \ ]\n },\n \ - \ {\n \"environment\": \"python_version\ - \ < \\\"3.8\\\"\",\n \"requires\": [\n \ - \ \"importlib-metadata\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n \ - \ \"version\": \"0.18.1\"\n },\n \ - \ \"sha256Digest\": \"3e5e902917c1e78984a9b531289ec82b483d6b1964a9411d904c532d19f4431c\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.18.2/azure_iot-0.18.2-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.18.2-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.32.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3 :: Only\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.7\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-core (<2.0.0,>=1.24.0)\"\ - ,\n \"azure-identity (<2.0.0,>=1.6.1)\",\n\ - \ \"azure-iot-device (~=2.11)\",\n \ - \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \ - \ \"azure-storage-blob (<13.0.0,>=12.14.0)\",\n \ - \ \"jsonschema (~=3.2.0)\",\n \ - \ \"msrest (>=0.6.21)\",\n \"\ - msrestazure (<2.0.0,>=0.6.3)\",\n \"packaging\"\ - ,\n \"tqdm (~=4.62)\"\n \ - \ ]\n },\n {\n \ - \ \"extra\": \"uamqp\",\n \ - \ \"requires\": [\n \"uamqp (~=1.2)\"\n \ - \ ]\n },\n \ - \ {\n \"environment\": \"python_version\ - \ < \\\"3.8\\\"\",\n \"requires\": [\n \ - \ \"importlib-metadata\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n \ - \ \"version\": \"0.18.2\"\n },\n \ - \ \"sha256Digest\": \"a0ca45e50492182b86206f1019f4d8c560307e05c4d3264968899481d5d9210c\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.18.3/azure_iot-0.18.3-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.18.3-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.32.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3 :: Only\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.7\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-core (<2.0.0,>=1.24.0)\"\ - ,\n \"azure-identity (<2.0.0,>=1.6.1)\",\n\ - \ \"azure-iot-device (~=2.11)\",\n \ - \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \ - \ \"azure-storage-blob (<13.0.0,>=12.14.0)\",\n \ - \ \"jsonschema (~=3.2.0)\",\n \ - \ \"msrest (>=0.6.21)\",\n \"\ - msrestazure (<2.0.0,>=0.6.3)\",\n \"packaging\"\ - ,\n \"tqdm (~=4.62)\"\n \ - \ ]\n },\n {\n \ - \ \"extra\": \"uamqp\",\n \ - \ \"requires\": [\n \"uamqp (~=1.2)\"\n \ - \ ]\n },\n \ - \ {\n \"environment\": \"python_version\ - \ < \\\"3.8\\\"\",\n \"requires\": [\n \ - \ \"importlib-metadata\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n \ - \ \"version\": \"0.18.3\"\n },\n \ - \ \"sha256Digest\": \"52b6e72dcb5084d758da605dfe3a4983c1d5ff27a338d143b89055215da45143\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.19.0/azure_iot-0.19.0-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.19.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.32.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3 :: Only\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.7\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-core (<2.0.0,>=1.24.0)\"\ - ,\n \"azure-identity (<2.0.0,>=1.6.1)\",\n\ - \ \"azure-iot-device (~=2.11)\",\n \ - \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \ - \ \"azure-storage-blob (<13.0.0,>=12.14.0)\",\n \ - \ \"jsonschema (~=3.2.0)\",\n \ - \ \"msrest (>=0.6.21)\",\n \"\ - msrestazure (<2.0.0,>=0.6.3)\",\n \"packaging\"\ - ,\n \"tomli (~=2.0)\",\n \ - \ \"tomli-w (~=1.0)\",\n \"tqdm\ - \ (~=4.62)\",\n \"treelib (~=1.6)\"\n \ - \ ]\n },\n \ - \ {\n \"extra\": \"uamqp\",\n \ - \ \"requires\": [\n \"uamqp\ - \ (~=1.2)\"\n ]\n },\n \ - \ {\n \"environment\": \"\ - python_version < \\\"3.8\\\"\",\n \"requires\"\ - : [\n \"importlib-metadata\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"The Azure IoT extension for Azure CLI.\"\ - ,\n \"version\": \"0.19.0\"\n },\n \ - \ \"sha256Digest\": \"e1dded53fc9e298a1ef7e1fcbf3399517e3be015785ba526c26d1584064a4fe0\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.19.1/azure_iot-0.19.1-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.19.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.32.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3 :: Only\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.7\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-core (<2.0.0,>=1.24.0)\"\ - ,\n \"azure-identity (<2.0.0,>=1.6.1)\",\n\ - \ \"azure-iot-device (~=2.11)\",\n \ - \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \ - \ \"azure-storage-blob (<13.0.0,>=12.14.0)\",\n \ - \ \"jsonschema (~=3.2.0)\",\n \ - \ \"msrest (>=0.6.21)\",\n \"\ - msrestazure (<2.0.0,>=0.6.3)\",\n \"packaging\"\ - ,\n \"tomli (~=2.0)\",\n \ - \ \"tomli-w (~=1.0)\",\n \"tqdm\ - \ (~=4.62)\",\n \"treelib (~=1.6)\"\n \ - \ ]\n },\n \ - \ {\n \"extra\": \"uamqp\",\n \ - \ \"requires\": [\n \"uamqp\ - \ (~=1.2)\"\n ]\n },\n \ - \ {\n \"environment\": \"\ - python_version < \\\"3.8\\\"\",\n \"requires\"\ - : [\n \"importlib-metadata\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"The Azure IoT extension for Azure CLI.\"\ - ,\n \"version\": \"0.19.1\"\n },\n \ - \ \"sha256Digest\": \"685c526081ce60fa2188106cd71c9412ee4765d5d74f3f0dce53466bdd9df15e\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.20.0/azure_iot-0.20.0-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.20.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.32.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3 :: Only\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.7\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-core (<2.0.0,>=1.24.0)\"\ - ,\n \"azure-identity (<2.0.0,>=1.6.1)\",\n\ - \ \"azure-iot-device (~=2.11)\",\n \ - \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \ - \ \"azure-storage-blob (<13.0.0,>=12.14.0)\",\n \ - \ \"jsonschema (~=3.2.0)\",\n \ - \ \"msrest (>=0.6.21)\",\n \"\ - msrestazure (<2.0.0,>=0.6.3)\",\n \"packaging\"\ - ,\n \"tomli (~=2.0)\",\n \ - \ \"tomli-w (~=1.0)\",\n \"tqdm\ - \ (~=4.62)\",\n \"treelib (~=1.6)\"\n \ - \ ]\n },\n \ - \ {\n \"extra\": \"uamqp\",\n \ - \ \"requires\": [\n \"uamqp\ - \ (~=1.2)\"\n ]\n },\n \ - \ {\n \"environment\": \"\ - python_version < \\\"3.8\\\"\",\n \"requires\"\ - : [\n \"importlib-metadata\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"The Azure IoT extension for Azure CLI.\"\ - ,\n \"version\": \"0.20.0\"\n },\n \ - \ \"sha256Digest\": \"6e304cee43f0e83d9aaa05c4283491fd6b4cf4ff4f685a3e08eaa8809ac8d5e7\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.21.0/azure_iot-0.21.0-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.21.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.37.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3 :: Only\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.7\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-core (<2.0.0,>=1.24.0)\"\ - ,\n \"azure-identity (<2.0.0,>=1.6.1)\",\n\ - \ \"azure-iot-device (~=2.11)\",\n \ - \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \ - \ \"azure-storage-blob (<13.0.0,>=12.14.0)\",\n \ - \ \"jsonschema (~=3.2.0)\",\n \ - \ \"msrest (>=0.6.21)\",\n \"\ - msrestazure (<2.0.0,>=0.6.3)\",\n \"packaging\"\ - ,\n \"tomli (~=2.0)\",\n \ - \ \"tomli-w (~=1.0)\",\n \"tqdm\ - \ (~=4.62)\",\n \"treelib (~=1.6)\"\n \ - \ ]\n },\n \ - \ {\n \"extra\": \"uamqp\",\n \ - \ \"requires\": [\n \"uamqp\ - \ (~=1.2)\"\n ]\n },\n \ - \ {\n \"environment\": \"\ - python_version < \\\"3.8\\\"\",\n \"requires\"\ - : [\n \"importlib-metadata\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"The Azure IoT extension for Azure CLI.\"\ - ,\n \"version\": \"0.21.0\"\n },\n \ - \ \"sha256Digest\": \"b88e0b14ec38b083525df4b8f5b24476158c468706f34925136a8d817363913e\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.21.1/azure_iot-0.21.1-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.21.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.37.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3 :: Only\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.7\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-core (<2.0.0,>=1.24.0)\"\ - ,\n \"azure-identity (<2.0.0,>=1.6.1)\",\n\ - \ \"azure-iot-device (~=2.11)\",\n \ - \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \ - \ \"azure-storage-blob (<13.0.0,>=12.14.0)\",\n \ - \ \"jsonschema (~=3.2.0)\",\n \ - \ \"msrest (>=0.6.21)\",\n \"\ - msrestazure (<2.0.0,>=0.6.3)\",\n \"packaging\"\ - ,\n \"tomli (~=2.0)\",\n \ - \ \"tomli-w (~=1.0)\",\n \"tqdm\ - \ (~=4.62)\",\n \"treelib (~=1.6)\"\n \ - \ ]\n },\n \ - \ {\n \"extra\": \"uamqp\",\n \ - \ \"requires\": [\n \"uamqp\ - \ (~=1.2)\"\n ]\n },\n \ - \ {\n \"environment\": \"\ - python_version < \\\"3.8\\\"\",\n \"requires\"\ - : [\n \"importlib-metadata\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"The Azure IoT extension for Azure CLI.\"\ - ,\n \"version\": \"0.21.1\"\n },\n \ - \ \"sha256Digest\": \"fe3140351a6d7a630aba2473403de49b6f8f4af6b67d358396b659cb4fdfd64a\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.21.2/azure_iot-0.21.2-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.21.2-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.37.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3 :: Only\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.7\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-core (<2.0.0,>=1.24.0)\"\ - ,\n \"azure-identity (<2.0.0,>=1.6.1)\",\n\ - \ \"azure-iot-device (~=2.11)\",\n \ - \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \ - \ \"azure-storage-blob (<13.0.0,>=12.14.0)\",\n \ - \ \"jsonschema (~=3.2.0)\",\n \ - \ \"msrest (>=0.6.21)\",\n \"\ - msrestazure (<2.0.0,>=0.6.3)\",\n \"packaging\"\ - ,\n \"tomli (~=2.0)\",\n \ - \ \"tomli-w (~=1.0)\",\n \"tqdm\ - \ (~=4.62)\",\n \"treelib (~=1.6)\"\n \ - \ ]\n },\n \ - \ {\n \"extra\": \"uamqp\",\n \ - \ \"requires\": [\n \"uamqp\ - \ (~=1.2)\"\n ]\n },\n \ - \ {\n \"environment\": \"\ - python_version < \\\"3.8\\\"\",\n \"requires\"\ - : [\n \"importlib-metadata\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"The Azure IoT extension for Azure CLI.\"\ - ,\n \"version\": \"0.21.2\"\n },\n \ - \ \"sha256Digest\": \"1f3241199456d299b17e2875ef9888de4c2977ddcfd0a3ae72087c9ff389b730\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.21.3/azure_iot-0.21.3-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.21.3-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.37.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3 :: Only\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.7\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-core (<2.0.0,>=1.24.0)\"\ - ,\n \"azure-identity (<2.0.0,>=1.6.1)\",\n\ - \ \"azure-iot-device (~=2.11)\",\n \ - \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \ - \ \"azure-storage-blob (<13.0.0,>=12.14.0)\",\n \ - \ \"jsonschema (~=3.2.0)\",\n \ - \ \"msrest (>=0.6.21)\",\n \"\ - msrestazure (<2.0.0,>=0.6.3)\",\n \"packaging\"\ - ,\n \"tomli (~=2.0)\",\n \ - \ \"tomli-w (~=1.0)\",\n \"tqdm\ - \ (~=4.62)\",\n \"treelib (~=1.6)\"\n \ - \ ]\n },\n \ - \ {\n \"extra\": \"uamqp\",\n \ - \ \"requires\": [\n \"uamqp\ - \ (~=1.2)\"\n ]\n },\n \ - \ {\n \"environment\": \"\ - python_version < \\\"3.8\\\"\",\n \"requires\"\ - : [\n \"importlib-metadata\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"The Azure IoT extension for Azure CLI.\"\ - ,\n \"version\": \"0.21.3\"\n },\n \ - \ \"sha256Digest\": \"17ed8c55d8cfdf0a874d8e37dd6a6a554f6f077722c7f06dc76cf3c31ef9c46c\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.21.4/azure_iot-0.21.4-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.21.4-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.37.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3 :: Only\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.7\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-core (<2.0.0,>=1.24.0)\"\ - ,\n \"azure-identity (<2.0.0,>=1.6.1)\",\n\ - \ \"azure-iot-device (~=2.11)\",\n \ - \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \ - \ \"azure-storage-blob (<13.0.0,>=12.14.0)\",\n \ - \ \"jsonschema (~=3.2.0)\",\n \ - \ \"msrest (>=0.6.21)\",\n \"\ - msrestazure (<2.0.0,>=0.6.3)\",\n \"packaging\"\ - ,\n \"tomli (~=2.0)\",\n \ - \ \"tomli-w (~=1.0)\",\n \"tqdm\ - \ (~=4.62)\",\n \"treelib (~=1.6)\"\n \ - \ ]\n },\n \ - \ {\n \"extra\": \"uamqp\",\n \ - \ \"requires\": [\n \"uamqp\ - \ (~=1.2)\"\n ]\n },\n \ - \ {\n \"environment\": \"\ - python_version < \\\"3.8\\\"\",\n \"requires\"\ - : [\n \"importlib-metadata\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"The Azure IoT extension for Azure CLI.\"\ - ,\n \"version\": \"0.21.4\"\n },\n \ - \ \"sha256Digest\": \"e61bb2dcea1faa208cfdf7346b0b296bb7d071f45d01536f9c3e32cdba8a9cca\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.21.5/azure_iot-0.21.5-py3-none-any.whl\"\ - ,\n \"filename\": \"azure_iot-0.21.5-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.37.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3 :: Only\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"iotupx@microsoft.com\",\n \"name\"\ - : \"Microsoft\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\ - \n }\n }\n \ - \ },\n \"extras\": [\n \"\ - uamqp\"\n ],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot\"\ - ,\n \"requires_python\": \">=3.7\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-core (<2.0.0,>=1.24.0)\"\ - ,\n \"azure-identity (<2.0.0,>=1.6.1)\",\n\ - \ \"azure-iot-device (~=2.11)\",\n \ - \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \ - \ \"azure-storage-blob (<13.0.0,>=12.14.0)\",\n \ - \ \"jsonschema (~=3.2.0)\",\n \ - \ \"msrest (>=0.6.21)\",\n \"\ - msrestazure (<2.0.0,>=0.6.3)\",\n \"packaging\"\ - ,\n \"tomli (~=2.0)\",\n \ - \ \"tomli-w (~=1.0)\",\n \"tqdm\ - \ (~=4.62)\",\n \"treelib (~=1.6)\"\n \ - \ ]\n },\n \ - \ {\n \"extra\": \"uamqp\",\n \ - \ \"requires\": [\n \"uamqp\ - \ (~=1.2)\"\n ]\n },\n \ - \ {\n \"environment\": \"\ - python_version < \\\"3.8\\\"\",\n \"requires\"\ - : [\n \"importlib-metadata\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"The Azure IoT extension for Azure CLI.\"\ - ,\n \"version\": \"0.21.5\"\n },\n \ - \ \"sha256Digest\": \"3a2bb6a15e68d519b378852223fc217148d93f43f828b0139fa6b7c7188f0074\"\ - \n }\n ],\n \"azure-sphere\": [\n {\n\ - \ \"downloadUrl\": \"https://software-static.download.prss.microsoft.com/dbazure/988969d5-f34g-4e03-ac9d-1f9786c66749/azure_sphere-0.1.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"azure_sphere-0.1.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azsppgsup@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://docs.microsoft.com/azure-sphere\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azure-sphere\",\n \ - \ \"requires_python\": \">=3.6.0\",\n \"run_requires\"\ - : [\n {\n \"requires\":\ - \ [\n \"azure-core (>=1.24.0)\",\n \ - \ \"azure-mgmt-core (>=1.3.0)\",\n \ - \ \"azuresphere-device-api (>=1.1.0)\",\n \ - \ \"semantic-version (==2.8.5)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Azure Sphere Extension\"\ - ,\n \"version\": \"0.1.4\"\n },\n \ - \ \"sha256Digest\": \"8ba8a4e9b1020ebe62db1c322cc4881793dde7f04b9c431772aac5a4cb214f35\"\ - \n }\n ],\n \"azurestackhci\": [\n {\n\ - \ \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"azurestackhci-0.2.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"project_urls\": {\n \"Home\"\ - : \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azurestackhci\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureStackHCIClient\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"27fba7f0a2c2fd97e4cc0e815a7de4ec9493e7ef99816d577da5046588f7977a\"\ - \n },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"azurestackhci-0.2.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azurestackhci\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureStackHCI\ - \ Extension\",\n \"version\": \"0.2.1\"\n \ - \ },\n \"sha256Digest\": \"3d6220cffd5b45383c16b9cdd43393e1d4e07bebf3b2bbca9eabed21049c197c\"\ - \n },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.2-py3-none-any.whl\"\ - ,\n \"filename\": \"azurestackhci-0.2.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azurestackhci\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureStackHCI\ - \ Extension\",\n \"version\": \"0.2.2\"\n \ - \ },\n \"sha256Digest\": \"2de905d3adc714745ee92bf81c237ea3dd61cb4a6e87d2a840f4047aba352a73\"\ - \n },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.3-py3-none-any.whl\"\ - ,\n \"filename\": \"azurestackhci-0.2.3-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azurestackhci\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureStackHCI\ - \ Extension\",\n \"version\": \"0.2.3\"\n \ - \ },\n \"sha256Digest\": \"0796a045fb8d5de1c0b12375459efd45628aec4e04419c679860aba1d2b4d361\"\ - \n },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.4-py3-none-any.whl\"\ - ,\n \"filename\": \"azurestackhci-0.2.4-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azurestackhci\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureStackHCI\ - \ Extension\",\n \"version\": \"0.2.4\"\n \ - \ },\n \"sha256Digest\": \"6e855e4a3f3eee635bc73c6f2b761a37ef557f0f0c6898361af3fd230c03a92f\"\ - \n },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.5-py3-none-any.whl\"\ - ,\n \"filename\": \"azurestackhci-0.2.5-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azurestackhci\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureStackHCI\ - \ Extension\",\n \"version\": \"0.2.5\"\n \ - \ },\n \"sha256Digest\": \"ce0c83fc04b79d279ef479fa7a6ae41786b0011d8343fe340567daacb357676e\"\ - \n },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.6-py3-none-any.whl\"\ - ,\n \"filename\": \"azurestackhci-0.2.6-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azurestackhci\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureStackHCI\ - \ Extension\",\n \"version\": \"0.2.6\"\n \ - \ },\n \"sha256Digest\": \"0a0e897028ecce7ab26b55a4971177d8a7df23f15c772bae2000447380b3d1e2\"\ - \n },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.9-py3-none-any.whl\"\ - ,\n \"filename\": \"azurestackhci-0.2.9-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"azurestackhci\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureStackHCI\ - \ Extension\",\n \"version\": \"0.2.9\"\n \ - \ },\n \"sha256Digest\": \"2557b2fe3fa2f951a2794ba967555ba54c2e93eb75538152f21ab2fb568fef16\"\ - \n }\n ],\n \"baremetal-infrastructure\": [\n \ - \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-baremetalinfrastructure-cli-extension/releases/download/1.0.0/baremetal_infrastructure-1.0.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"baremetal_infrastructure-1.0.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.12.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 2\",\n \"Programming Language :: Python :: 2.7\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-baremetalinfrastructure-cli-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"baremetal-infrastructure\",\n\ - \ \"summary\": \"Additional commands for working with BareMetal\ - \ instances.\",\n \"version\": \"1.0.0\"\n \ - \ },\n \"sha256Digest\": \"9e0bd5e66debbb9a4a810dad44f710eba43f0249b2f8a630539b68e21a849d6f\"\ - \n }\n ],\n \"bastion\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"bastion-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.43.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"bastion\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Bastion Extension.\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"8a3ab4753d4c5be5306ff7102a962d9a3c6e867e0cfc50d628823af3c4cb4f31\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"bastion-0.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.43.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"bastion\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Bastion Extension.\"\ - ,\n \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"97cfe1c32304e23317d06afa627718759b08fa4e7a653fff54a4bd03cfd28b22\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"bastion-0.2.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.43.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"bastion\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Bastion Extension.\"\ - ,\n \"version\": \"0.2.1\"\n },\n \ - \ \"sha256Digest\": \"5eae321c2da7598d58e2f7b3c7ce9c2ceaa478ddc677fcc2f2cbaf9db5d9990b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.2-py3-none-any.whl\"\ - ,\n \"filename\": \"bastion-0.2.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.43.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"bastion\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Bastion Extension.\"\ - ,\n \"version\": \"0.2.2\"\n },\n \ - \ \"sha256Digest\": \"46939533454fbc427b136c9108387598225971f5f8c3a96ea25e8892ee74ba46\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.3-py3-none-any.whl\"\ - ,\n \"filename\": \"bastion-0.2.3-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.43.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"bastion\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Bastion Extension.\"\ - ,\n \"version\": \"0.2.3\"\n },\n \ - \ \"sha256Digest\": \"fa0750de72dd8645c6fc64d38fb271d8e8c928b101a097a709df6f08932d27dc\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.4-py3-none-any.whl\"\ - ,\n \"filename\": \"bastion-0.2.4-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.43.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"bastion\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Bastion Extension.\"\ - ,\n \"version\": \"0.2.4\"\n },\n \ - \ \"sha256Digest\": \"f765a3443cc8d37da6efe4b6e14544916a0367a86a74b4c557ce3a52866d87b3\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.5-py3-none-any.whl\"\ - ,\n \"filename\": \"bastion-0.2.5-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.43.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"bastion\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Bastion Extension.\"\ - ,\n \"version\": \"0.2.5\"\n },\n \ - \ \"sha256Digest\": \"49f509734778db4badf14dadee8a1d59b66f79776fc2c4848026faf5abf1193c\"\ - \n }\n ],\n \"billing-benefits\": [\n \ - \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/billing_benefits-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"billing_benefits-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/billing-benefits\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"billing-benefits\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools BillingBenefits\ - \ Extension.\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"f71250d1c26690cc0e175cd5c9bcd59e76c7b701bb3a47c8273e4cf8bcca878e\"\ - \n }\n ],\n \"blockchain\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/blockchain-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"blockchain-0.1.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"blockchain\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools BlockchainManagementClient Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"ba0001dffaf39d133604c4281ed9c943f178a16a91d31f5889bf1587d9871049\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/blockchain-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"blockchain-0.1.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/blockchain\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"blockchain\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools BlockchainManagementClient\ - \ Extension\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"95a4788ab10052f6c1b4122db6ab140705db528e5cb3db3358580d703a2a7204\"\ - \n }\n ],\n \"blueprint\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/blueprint-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"blueprint-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"blueprint\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Blueprint Extension\",\n \ - \ \"version\": \"0.1.0\"\n },\n \"\ - sha256Digest\": \"98c1874110e2c77c62cf0d180133ea0b29ed08a86189ee292b909369597e694b\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/blueprint-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"blueprint-0.1.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"blueprint\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Blueprint Extension\",\n \ - \ \"version\": \"0.1.1\"\n },\n \"\ - sha256Digest\": \"4508b6143f69e6ac388ad37b3e3af82f49c9b5625e12d341963cc2faf02e368f\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/blueprint-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"blueprint-0.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"blueprint\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Blueprint Extension\",\n \ - \ \"version\": \"0.2.0\"\n },\n \"\ - sha256Digest\": \"fcbbe61db268b9b5452b0d9055c5fc8b725a63193290957c2681de5fe2e6f1ff\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/blueprint-0.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"blueprint-0.2.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/blueprint\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"blueprint\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Blueprint Extension\"\ - ,\n \"version\": \"0.2.1\"\n },\n \ - \ \"sha256Digest\": \"120bd04db8b31bbc5631ce086739763cca3144c2e314b8e1347f1d633e894a09\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/blueprint-0.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"blueprint-0.3.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/blueprint\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"blueprint\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Blueprint Extension\"\ - ,\n \"version\": \"0.3.0\"\n },\n \ - \ \"sha256Digest\": \"843a836410e80a3a72a36ea90c72d9a1358b787c77afae20d2ae71b976c1c5a4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/blueprint-0.3.1-py3-none-any.whl\"\ - ,\n \"filename\": \"blueprint-0.3.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/blueprint\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"blueprint\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Blueprint Extension\"\ - ,\n \"version\": \"0.3.1\"\n },\n \ - \ \"sha256Digest\": \"ebac321b7ef9811d82a166da7ec48b2d70f234aec8d3fd597f471ba752a5d253\"\ - \n }\n ],\n \"change-analysis\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/change_analysis-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"change_analysis-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/change-analysis\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"change-analysis\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools ChangeAnalysis\ - \ Extension.\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"49f1761a1b1ad29169af2ecd5793e10ddec797ebb2610e7c70e1b1ab2b75126a\"\ - \n }\n ],\n \"cli-translator\": [\n {\n\ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/cli_translator-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"cli_translator-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/cli-translator\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"cli-translator\",\n \ - \ \"summary\": \"Translate ARM template to executable Azure CLI scripts.\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"8a4d19ed89cd63e1cc461715b7b0a1a989d2b480adc1b3b4f5747eef0327b85b\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/cli_translator-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"cli_translator-0.2.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/cli-translator\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"cli-translator\",\n \ - \ \"summary\": \"Translate ARM template to executable Azure CLI scripts.\"\ - ,\n \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"ee07cbcde217d2b1ab226ef5aeea8e44510b704fb5e3976638dcf2f978f722e4\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/cli_translator-0.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"cli_translator-0.3.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/cli-translator\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"cli-translator\",\n \ - \ \"summary\": \"Translate ARM template to executable Azure CLI scripts.\"\ - ,\n \"version\": \"0.3.0\"\n },\n \ - \ \"sha256Digest\": \"9ea6162d37fc3390be4dce64cb05c5c588070104f3e92a701ab475473565a8a9\"\ - \n }\n ],\n \"cloud-service\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cloud_service-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"cloud_service-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/cloudservice\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"cloud-service\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-compute (~=19.0.0)\"\n \ - \ ]\n }\n ],\n\ - \ \"summary\": \"Microsoft Azure Command-Line Tools ComputeManagementClient\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"22c640991a5e98e42ddcb4303813cd63b75d4b3d392ad9eab955a5af1b87c45b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cloud_service-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"cloud_service-0.2.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/cloudservice\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"cloud-service\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-compute (~=20.0.0)\"\n \ - \ ]\n }\n ],\n\ - \ \"summary\": \"Microsoft Azure Command-Line Tools ComputeManagementClient\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"ee7ca3a5eaa801ceea9173f2ff0a429600bff9e9339d504071c0283b56facec4\"\ - \n }\n ],\n \"command-change\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/command_change-1.0.0b1-py3-none-any.whl\"\ - ,\n \"filename\": \"command_change-1.0.0b1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/command-change\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"command-change\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-cli-diff-tool\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools CommandChange\ - \ Extension.\",\n \"version\": \"1.0.0b1\"\n \ - \ },\n \"sha256Digest\": \"e7834850f0c99431180f3ebbfab00bd5ce8bda1696d9de556175e6b7466b1f44\"\ - \n }\n ],\n \"communication\": [\n {\n\ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/communication-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"communication-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/communication\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"communication\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"a16e8262b53791aad9e74a4f3d4804a5bafbe415df3c7651776e98b787bf6226\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.0.0-py3-none-any.whl\"\ - ,\n \"filename\": \"communication-1.0.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/communication\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"communication\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient\ - \ Extension\",\n \"version\": \"1.0.0\"\n \ - \ },\n \"sha256Digest\": \"2ee3d4c870c0c0c0dd97fbe6510958ac8c23dca2b4814b4a0a9ea665cd17e723\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"communication-1.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/communication\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"communication\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-communication-identity\",\n \ - \ \"azure-communication-phonenumbers\",\n \ - \ \"azure-communication-sms\",\n \ - \ \"azure-core\"\n ]\n \ - \ }\n ],\n \"summary\": \"\ - Microsoft Azure Command-Line Tools CommunicationServiceManagementClient Extension\"\ - ,\n \"version\": \"1.1.0\"\n },\n \ - \ \"sha256Digest\": \"e4ac2008217ade46ca2504b31aa79ab11c1c892964fd06df911e976be6cf3dae\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"communication-1.1.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"communication\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-communication-identity\",\n \ - \ \"azure-communication-phonenumbers\",\n \ - \ \"azure-communication-sms\",\n \ - \ \"azure-core\"\n ]\n \ - \ }\n ],\n \"summary\": \"\ - Microsoft Azure Command-Line Tools CommunicationServiceManagementClient Extension\"\ - ,\n \"version\": \"1.1.1\"\n },\n \ - \ \"sha256Digest\": \"f5f50e27f9066772fd55c2c6bb9c4100964ef7b2ad38942cdf900cb856431f34\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"communication-1.1.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"communication\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-communication-identity\",\n \ - \ \"azure-communication-phonenumbers\",\n \ - \ \"azure-communication-sms\",\n \ - \ \"azure-core\"\n ]\n \ - \ }\n ],\n \"summary\": \"\ - Microsoft Azure Command-Line Tools CommunicationServiceManagementClient Extension\"\ - ,\n \"version\": \"1.1.2\"\n },\n \ - \ \"sha256Digest\": \"95baaac48941cf28d0bb55e6f0137815d815e422d94aaf8c09851f17134be3fd\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"communication-1.2.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\":\ - \ {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"communication\",\n \"requires_python\": \">=3.7\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-communication-chat\",\n \"azure-communication-identity\ - \ (>=1.1.0)\",\n \"azure-communication-phonenumbers\"\ - ,\n \"azure-communication-sms\",\n \ - \ \"azure-core\"\n ]\n \ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient\ - \ Extension\",\n \"version\": \"1.2.0\"\n \ - \ },\n \"sha256Digest\": \"5ddf668ec26069f3f543f473c693f17dc09c0eef049649031d685084dc74dc95\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"communication-1.2.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\":\ - \ {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"communication\",\n \"requires_python\": \">=3.7\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-communication-chat\",\n \"azure-communication-identity\ - \ (>=1.1.0)\",\n \"azure-communication-phonenumbers\"\ - ,\n \"azure-communication-sms\",\n \ - \ \"azure-core\"\n ]\n \ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient\ - \ Extension\",\n \"version\": \"1.2.1\"\n \ - \ },\n \"sha256Digest\": \"25515098d1975677ceae20935e8ef0ae2ee8cbaba5894c9d7267be6835dd18f7\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.2.2-py3-none-any.whl\"\ - ,\n \"filename\": \"communication-1.2.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\":\ - \ {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"communication\",\n \"requires_python\": \">=3.7\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-communication-chat\",\n \"azure-communication-identity\ - \ (>=1.1.0)\",\n \"azure-communication-phonenumbers\"\ - ,\n \"azure-communication-sms\",\n \ - \ \"azure-core\"\n ]\n \ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient\ - \ Extension\",\n \"version\": \"1.2.2\"\n \ - \ },\n \"sha256Digest\": \"eba4d9b3ff0fff5b6c815577951a60968c0062e9b333d4f8594d39036002ceb0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"communication-1.3.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\":\ - \ {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"communication\",\n \"requires_python\": \">=3.7\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-communication-chat\",\n \"azure-communication-identity\ - \ (>=1.1.0)\",\n \"azure-communication-phonenumbers\"\ - ,\n \"azure-communication-sms\",\n \ - \ \"azure-core\"\n ]\n \ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient\ - \ Extension\",\n \"version\": \"1.3.0\"\n \ - \ },\n \"sha256Digest\": \"6ba09eb74e658d53567335568dbda2f58851504022ca11cd1db6f2cc84dfb4e1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.4.1-py3-none-any.whl\"\ - ,\n \"filename\": \"communication-1.4.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.40.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\":\ - \ {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"communication\",\n \"requires_python\": \">=3.7\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-communication-chat\",\n \"azure-communication-identity\ - \ (>=1.2.0)\",\n \"azure-communication-phonenumbers\"\ - ,\n \"azure-communication-rooms\",\n \ - \ \"azure-communication-sms\",\n \ - \ \"azure-core\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient\ - \ Extension\",\n \"version\": \"1.4.1\"\n \ - \ },\n \"sha256Digest\": \"f3b8d6812151f45bd12be1f7e567a857ed13e822f5471965449e1212853481d1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.5.0-py3-none-any.whl\"\ - ,\n \"filename\": \"communication-1.5.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.40.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\":\ - \ {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"communication\",\n \"requires_python\": \">=3.7\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-communication-chat\",\n \"azure-communication-email\ - \ (>=1.0.0b1)\",\n \"azure-communication-identity\ - \ (>=1.2.0)\",\n \"azure-communication-phonenumbers\"\ - ,\n \"azure-communication-rooms\",\n \ - \ \"azure-communication-sms\",\n \ - \ \"azure-core\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient\ - \ Extension\",\n \"version\": \"1.5.0\"\n \ - \ },\n \"sha256Digest\": \"74e52d38fe0e14c66992c44f265fae7a2cf89ee64a33e402c217defbd1f2e28c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.5.1-py3-none-any.whl\"\ - ,\n \"filename\": \"communication-1.5.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.40.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\":\ - \ {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"communication\",\n \"requires_python\": \">=3.7\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-communication-chat\",\n \"azure-communication-email\ - \ (>=1.0.0b1)\",\n \"azure-communication-identity\ - \ (>=1.2.0)\",\n \"azure-communication-phonenumbers\"\ - ,\n \"azure-communication-rooms\",\n \ - \ \"azure-communication-sms\",\n \ - \ \"azure-core\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient\ - \ Extension\",\n \"version\": \"1.5.1\"\n \ - \ },\n \"sha256Digest\": \"04aadad0932fb25c5491396c367c10d948930aa8c65398c9b5ba0a5bdfa41ca4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.5.2-py3-none-any.whl\"\ - ,\n \"filename\": \"communication-1.5.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.40.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\":\ - \ {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"communication\",\n \"requires_python\": \">=3.7\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-communication-chat\",\n \"azure-communication-email\ - \ (==1.0.0b1)\",\n \"azure-communication-identity\ - \ (>=1.2.0)\",\n \"azure-communication-phonenumbers\"\ - ,\n \"azure-communication-rooms\",\n \ - \ \"azure-communication-sms\",\n \ - \ \"azure-core\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient\ - \ Extension\",\n \"version\": \"1.5.2\"\n \ - \ },\n \"sha256Digest\": \"aaff9348766224c8be86e46cf848ba34ef4691cd7f3ca27ba3052132efdaa16c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.6.0-py3-none-any.whl\"\ - ,\n \"filename\": \"communication-1.6.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.40.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\":\ - \ {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"communication\",\n \"requires_python\": \">=3.7\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-communication-chat\",\n \"azure-communication-email\ - \ (==1.0.0b1)\",\n \"azure-communication-identity\ - \ (>=1.2.0)\",\n \"azure-communication-phonenumbers\"\ - ,\n \"azure-communication-rooms (>=1.0.0b3)\"\ - ,\n \"azure-communication-sms\",\n \ - \ \"azure-core\"\n ]\n \ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient\ - \ Extension\",\n \"version\": \"1.6.0\"\n \ - \ },\n \"sha256Digest\": \"45bbb303f0b1f845d9c13fff4f4ae6240f020b9bc32da73cd37fc896cd4aa9f0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.6.1-py3-none-any.whl\"\ - ,\n \"filename\": \"communication-1.6.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.40.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\":\ - \ {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"communication\",\n \"requires_python\": \">=3.7\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-communication-chat\",\n \"azure-communication-email\ - \ (==1.0.0b1)\",\n \"azure-communication-identity\ - \ (>=1.2.0)\",\n \"azure-communication-phonenumbers\"\ - ,\n \"azure-communication-rooms (>=1.0.0)\"\ - ,\n \"azure-communication-sms\",\n \ - \ \"azure-core\"\n ]\n \ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient\ - \ Extension\",\n \"version\": \"1.6.1\"\n \ - \ },\n \"sha256Digest\": \"0152e4a074efd873bd2c1b3d623eddd244773bcc521122234e3d03ce70c5da33\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.7.0b1-py3-none-any.whl\"\ - ,\n \"filename\": \"communication-1.7.0b1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.49.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\":\ - \ {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"communication\",\n \"requires_python\": \">=3.7\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-communication-chat\",\n \"azure-communication-email\ - \ (==1.0.0b1)\",\n \"azure-communication-identity\ - \ (>=1.2.0)\",\n \"azure-communication-phonenumbers\"\ - ,\n \"azure-communication-rooms (>=1.0.0)\"\ - ,\n \"azure-communication-sms\",\n \ - \ \"azure-core\"\n ]\n \ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient\ - \ Extension\",\n \"version\": \"1.7.0b1\"\n \ - \ },\n \"sha256Digest\": \"7774047b33e8b093a89507e8b54ae08f979fb160fac80088b67aa10a834f8372\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.7.1b1-py3-none-any.whl\"\ - ,\n \"filename\": \"communication-1.7.1b1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.49.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\":\ - \ {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"communication\",\n \"requires_python\": \">=3.7\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-communication-chat\",\n \"azure-communication-email\ - \ (==1.0.0b1)\",\n \"azure-communication-identity\ - \ (>=1.2.0)\",\n \"azure-communication-phonenumbers\"\ - ,\n \"azure-communication-rooms (>=1.0.0)\"\ - ,\n \"azure-communication-sms\",\n \ - \ \"azure-core\"\n ]\n \ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient\ - \ Extension\",\n \"version\": \"1.7.1b1\"\n \ - \ },\n \"sha256Digest\": \"6066d7d40bedea969c9e4e11f1848b3da8dc4d9a23a849b267e66574d31f6612\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.7.2b1-py3-none-any.whl\"\ - ,\n \"filename\": \"communication-1.7.2b1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.49.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\":\ - \ {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"communication\",\n \"requires_python\": \">=3.7\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-communication-chat\",\n \"azure-communication-email\ - \ (>=1.0.0)\",\n \"azure-communication-identity\ - \ (>=1.2.0)\",\n \"azure-communication-phonenumbers\"\ - ,\n \"azure-communication-rooms (>=1.0.0)\"\ - ,\n \"azure-communication-sms\",\n \ - \ \"azure-core\"\n ]\n \ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient\ - \ Extension\",\n \"version\": \"1.7.2b1\"\n \ - \ },\n \"sha256Digest\": \"68e4085c6448b9ae9a964583c580ceb0a0f6fcd53cd007d17026c01a6628c258\"\ - \n }\n ],\n \"confcom\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.2.10-py3-none-any.whl\"\ - ,\n \"filename\": \"confcom-0.2.10-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.26.2\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"acccli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"confcom\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"deepdiff\",\n \"docker\"\ - ,\n \"tqdm\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Confidential Container Security\ - \ Policy Generator Extension\",\n \"version\": \"0.2.10\"\ - \n },\n \"sha256Digest\": \"c464da586646d3616fe501de68c0ada6c56448532d541bc5386d0a60f7719286\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.2.11-py3-none-any.whl\"\ - ,\n \"filename\": \"confcom-0.2.11-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.26.2\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"acccli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"confcom\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"deepdiff\",\n \"docker\"\ - ,\n \"tqdm\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Confidential Container Security\ - \ Policy Generator Extension\",\n \"version\": \"0.2.11\"\ - \n },\n \"sha256Digest\": \"a2e9914df505a322f66bcc326baff6cd137296a208ebbd68ce90d4421023de06\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.2.12-py3-none-any.whl\"\ - ,\n \"filename\": \"confcom-0.2.12-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.26.2\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"acccli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"confcom\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"deepdiff\",\n \"docker\"\ - ,\n \"tqdm\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Confidential Container Security\ - \ Policy Generator Extension\",\n \"version\": \"0.2.12\"\ - \n },\n \"sha256Digest\": \"1273f6b51c43b4682ce93d7ca35ca33e26efe586a0074ba3a9f426bd54b583ae\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.2.13-py3-none-any.whl\"\ - ,\n \"filename\": \"confcom-0.2.13-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.26.2\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"acccli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"confcom\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"deepdiff\",\n \"docker\"\ - ,\n \"tqdm\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Confidential Container Security\ - \ Policy Generator Extension\",\n \"version\": \"0.2.13\"\ - \n },\n \"sha256Digest\": \"4c2738eb4082df58d9fe0b8763943be398975478806c12d42e58624806358f28\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.2.15-py3-none-any.whl\"\ - ,\n \"filename\": \"confcom-0.2.15-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.26.2\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \"\ - python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"acccli@microsoft.com\",\n \"name\"\ - : \"Microsoft Corporation\",\n \"role\"\ - : \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"confcom\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"deepdiff\",\n \"docker\"\ - ,\n \"tqdm\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Confidential Container Security\ - \ Policy Generator Extension\",\n \"version\": \"0.2.15\"\ - \n },\n \"sha256Digest\": \"f84e1caa67294ca62969b95655164db492a57d89b19cc2f896d9239124679a89\"\ - \n }\n ],\n \"confidentialledger\": [\n \ - \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confidentialledger-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"confidentialledger-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/confidentialledger\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"confidentialledger\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools ConfidentialLedger\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"a8428687acab162b982153333766ec0f6888b2ce71dfd24f815cd4ee1e4b3ac3\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confidentialledger-1.0.0-py3-none-any.whl\"\ - ,\n \"filename\": \"confidentialledger-1.0.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confidentialledger\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"confidentialledger\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools ConfidentialLedger\ - \ Extension\",\n \"version\": \"1.0.0\"\n \ - \ },\n \"sha256Digest\": \"3afbf49f10cdddd9675562364ce2275f6f70eb5318fa85b658d711b1e24dc94e\"\ - \n }\n ],\n \"confluent\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confluent-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"confluent-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/confluent\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"confluent\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools ConfluentManagementClient\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"4a6ffd3d10898183b66b0933064bc6d9bbade0e9af32be3348412b75310e07cb\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confluent-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"confluent-0.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/confluent\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"confluent\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools ConfluentManagementClient\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"edf3b0d4afc36a3aaa9f68723f1db8b26bedcb5a5abcb053556146e4604cf31a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confluent-0.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"confluent-0.3.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/confluent\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"confluent\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools ConfluentManagementClient\ - \ Extension\",\n \"version\": \"0.3.0\"\n \ - \ },\n \"sha256Digest\": \"62ea75ea44aa9c2872ec0f3d396eb6e35f37e0799890afa5f82d2187f9cace58\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confluent-0.4.0-py3-none-any.whl\"\ - ,\n \"filename\": \"confluent-0.4.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/confluent\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"confluent\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools ConfluentManagementClient\ - \ Extension\",\n \"version\": \"0.4.0\"\n \ - \ },\n \"sha256Digest\": \"7b812940a77094bc916c745a61b7732966de4e7943a7541c0a402c0d912bc6af\"\ - \n }\n ],\n \"connectedk8s\": [\n {\n\ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.1.5-py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-0.1.5-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"connectedk8s\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"kubernetes\",\n \"pycryptodome\"\n \ - \ ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line Tools\ - \ Connectedk8s Extension\",\n \"version\": \"0.1.5\"\n\ - \ },\n \"sha256Digest\": \"1b529c1fedb5db9dee3dc877ca036f5373d307ca8a07c278d07126531b1c55b6\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-0.2.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"connectedk8s\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"kubernetes\",\n \"pycryptodome\"\n \ - \ ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line Tools\ - \ Connectedk8s Extension\",\n \"version\": \"0.2.0\"\n\ - \ },\n \"sha256Digest\": \"d306355d5568f9f5b201db9f5bda28fc0b142c6b70164a87bf56974239749ebd\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-0.2.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"connectedk8s\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"kubernetes\",\n \"pycryptodome\"\n \ - \ ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line Tools\ - \ Connectedk8s Extension\",\n \"version\": \"0.2.1\"\n\ - \ },\n \"sha256Digest\": \"e910b1a0abee28121d5c216821c5d88cefc87030eb3068e699135314ecb0f8c9\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.3-py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-0.2.3-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"connectedk8s\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"kubernetes\",\n \"pycryptodome\"\n \ - \ ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line Tools\ - \ Connectedk8s Extension\",\n \"version\": \"0.2.3\"\n\ - \ },\n \"sha256Digest\": \"9660bbd577c66af1bcebeeaaec9cabb61cd27a0b58c6fe9a9a795d6a73777ee9\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.4-py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-0.2.4-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"connectedk8s\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"kubernetes\",\n \"pycryptodome\"\n \ - \ ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line Tools\ - \ Connectedk8s Extension\",\n \"version\": \"0.2.4\"\n\ - \ },\n \"sha256Digest\": \"4de66f7e8cecdfab8c91bf4f37347770fb17e087454159d3a5c81e0205f2da2c\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.5-py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-0.2.5-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"connectedk8s\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"kubernetes\",\n \"pycryptodome\"\n \ - \ ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line Tools\ - \ Connectedk8s Extension\",\n \"version\": \"0.2.5\"\n\ - \ },\n \"sha256Digest\": \"0c23ebd04c37b26219cd224134e8af675130cc346808ae008cd5cfc4f3b1bd84\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.6-py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-0.2.6-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"connectedk8s\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"kubernetes\",\n \"pycryptodome\"\n \ - \ ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line Tools\ - \ Connectedk8s Extension\",\n \"version\": \"0.2.6\"\n\ - \ },\n \"sha256Digest\": \"165411ce6ecdda8a4705bd9e93998b1ffdf6ddc88b01ed0ce12a3c100d1b9549\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.7-py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-0.2.7-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"connectedk8s\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \"pycryptodome\ - \ (==3.9.8)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Microsoft Azure\ - \ Command-Line Tools Connectedk8s Extension\",\n \"version\"\ - : \"0.2.7\"\n },\n \"sha256Digest\": \"115bbeb79206632301a20dc4b1d6604f5c126c82c0ba1a9a58131a66da30a7dc\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.8-py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-0.2.8-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"0.2.8\"\n },\n \ - \ \"sha256Digest\": \"a0f8d12304b097a65d2b22f4e47faa6c6899e680bab77dfb41e72d2722e7e7d6\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.9-py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-0.2.9-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"0.2.9\"\n },\n \ - \ \"sha256Digest\": \"55377bea57ae6288a501ea65ff2c68b2961ac7582da9b7646960faf17583e3dd\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.0.0-py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.0.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.67\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"k8connect@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n\ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.0.0\"\n },\n \ - \ \"sha256Digest\": \"9eb34e10523ee5bbd9a4be03915532da7acc3be11631fb646807085c09380c59\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.16.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.1.0\"\n },\n \ - \ \"sha256Digest\": \"47b871998ac7c3b90689c8cfef18d1d1c9a77d04fabd64a0071504dd434af5c8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.1.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.16.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.1.1\"\n },\n \ - \ \"sha256Digest\": \"522d70fb956e23f2a705ea51d8227845844ec0648263a5e7504543a493c67441\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.1.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.16.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.1.2\"\n },\n \ - \ \"sha256Digest\": \"70fd92b69c9c06d1bf22984a06d8027a2d3f192d0c59388cef2a3861dc79874f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.1.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.16.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.1.3\"\n },\n \ - \ \"sha256Digest\": \"f0845d6b310c645327a648fc555acc52f02fa8ed31054fc056c7adb1a37e5f40\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.1.5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.16.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.1.5\"\n },\n \ - \ \"sha256Digest\": \"41edf3789d85074f1159645c7257ac747709ea613c2c2c80a95cdfee92e36fa5\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.1.6-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.16.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.1.6\"\n },\n \ - \ \"sha256Digest\": \"d93e28cac3425b688581cd885d198173bf0dc5e20e91d00e3f176519e0fbddeb\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.1.7-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.16.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.1.7\"\n },\n \ - \ \"sha256Digest\": \"fa8ed32f122136c0774361ffe78eea2e3189ede8bacc72ca6b972b6ab87d6393\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.8-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.1.8-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.16.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.1.8\"\n },\n \ - \ \"sha256Digest\": \"21cca7dcd973655694fcaa927563bb6afd2463cf6e6ce450e45ad8f27ab33ed9\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.9-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.1.9-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.16.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.1.9\"\n },\n \ - \ \"sha256Digest\": \"26c85757eb59ec8309d19f14dfab94cb28039a21015ce70106cf618e57face59\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.10-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.1.10-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.16.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.1.10\"\n },\n \ - \ \"sha256Digest\": \"9cd74663e39095fd58510ccebda78586205c6b536f89c90badbd647f6b84b0a9\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.11-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.1.11-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.16.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.1.11\"\n },\n \ - \ \"sha256Digest\": \"986924760ccd29d74a35b5fb2253a23400d6e27e48521b72fc8d06a493eb4faa\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.2.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.16.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.2.0\"\n },\n \ - \ \"sha256Digest\": \"e6873b0cdcfb82cda00f00dfdc5ce9d0daf4db651e100c6c3e3ff58ca89732ab\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.2.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.maxCliCoreVersion\"\ - : \"2.29.0\",\n \"azext.minCliCoreVersion\": \"2.16.0\"\ - ,\n \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"description_content_type\": \"text/markdown\",\n \ - \ \"extensions\": {\n \"python.details\": {\n \ - \ \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.2.1\"\n },\n \ - \ \"sha256Digest\": \"8a6a3e88952c36d7d38602953b1a3de3386ab18bc0cc79e7b74b931fe0d57f3d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.2.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.maxCliCoreVersion\"\ - : \"2.29.0\",\n \"azext.minCliCoreVersion\": \"2.16.0\"\ - ,\n \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"description_content_type\": \"text/markdown\",\n \ - \ \"extensions\": {\n \"python.details\": {\n \ - \ \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.2.2\"\n },\n \ - \ \"sha256Digest\": \"03c7625c0e4a09da8c4ea5051bd5d2a92d9e22d085b56cc30b319bb941f254b4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.2.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.maxCliCoreVersion\"\ - : \"2.29.0\",\n \"azext.minCliCoreVersion\": \"2.16.0\"\ - ,\n \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"description_content_type\": \"text/markdown\",\n \ - \ \"extensions\": {\n \"python.details\": {\n \ - \ \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.2.3\"\n },\n \ - \ \"sha256Digest\": \"3dff7553c723ef87aeb5ad5b20f3dc56a59324254ee15d880f9c1303eb5984aa\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.2.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.maxCliCoreVersion\"\ - : \"2.29.0\",\n \"azext.minCliCoreVersion\": \"2.16.0\"\ - ,\n \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"description_content_type\": \"text/markdown\",\n \ - \ \"extensions\": {\n \"python.details\": {\n \ - \ \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.2.4\"\n },\n \ - \ \"sha256Digest\": \"2106bdef362215013f5b55141e878ba54db63359fb57a7751ea1841c6ba9a915\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.2.5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.16.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.2.5\"\n },\n \ - \ \"sha256Digest\": \"fd0bc6f534e5a9e72fe6585031eeb29655d05f2cac4f505804bc6052a52c5fcd\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.2.6-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.23.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.2.6\"\n },\n \ - \ \"sha256Digest\": \"473e31ada7636316304b2a39a76654722a0f5409bf8a2ffddf196ccc42df10a4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.2.7-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.16.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.2.7\"\n },\n \ - \ \"sha256Digest\": \"3f13d1b95c89865a8bdc0d40323956d599305892a54085e1115866b429ab2fa1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.8-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.2.8-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.16.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.2.8\"\n },\n \ - \ \"sha256Digest\": \"df97793b98a0f8e2e70f8a7942c6d65b9e581c54cf3f7632d4c48f01b2426a09\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.9-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.2.9-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.16.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.2.9\"\n },\n \ - \ \"sha256Digest\": \"06cb4e2aa841abeb712b9e564748c28b14cc49cc30cd65b05730f633120c7666\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.10-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.2.10-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.16.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.2.10\"\n },\n \ - \ \"sha256Digest\": \"f470e60e651201635e358411d9e07f0a9519fa059ca33f5543a9bff2982d8998\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.11-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.2.11-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.16.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\",\n\ - \ \"version\": \"1.2.11\"\n },\n \ - \ \"sha256Digest\": \"0cc9fb7514b040ec8deb4269282c16a1d382c95a3b3a7def04ed6e795f85d62d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.30.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.1\"\n },\n \ - \ \"sha256Digest\": \"b728b34c4c3edf32744d092cd915f62f4d4898e959214014905807c136518e94\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.30.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.2\"\n },\n \ - \ \"sha256Digest\": \"e392698b2f1f7a545f0f0c40cca2c17ba74cdd47db2299b7eaea1d3e0b6595a9\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.30.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.3\"\n },\n \ - \ \"sha256Digest\": \"1a42dd74a1c4d8552ed57112314da641a8e78acc1ba7ec763ebecc390b5aaf9c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.30.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==11.0.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.4\"\n },\n \ - \ \"sha256Digest\": \"83ed63bb821ae47b944b6d2e4894229bfc76e9b0cefec8b73a0c74f9ea44e833\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.38.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==24.2.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.5\"\n },\n \ - \ \"sha256Digest\": \"17ba7dd032c87e7ff4b9cce298dd81171e6e75bcfe2912f7c2f3cd1f55c00d11\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.6-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.38.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==24.2.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.6\"\n },\n \ - \ \"sha256Digest\": \"5c0c55940802239372608d9c7faf1c76e4f2f2fef5ebbd36be7011ae854a7563\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.7-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.38.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==24.2.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.7\"\n },\n \ - \ \"sha256Digest\": \"5a62c4c4e6e27e0e9f5522b12118ce5dcb227fd42f2ac03495cafd8fd9a3bcba\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.8-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.8-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.38.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==24.2.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.8\"\n },\n \ - \ \"sha256Digest\": \"a2ca94688926fb98cece7b8624c5dd7cf9e6ae69eeb1bc9f1dd525ae1abdc95e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.9-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.9-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.38.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==24.2.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.9\"\n },\n \ - \ \"sha256Digest\": \"ad770af71a013785229d287705580e6b9815cafb7e10fb09c07b917baba813a0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.10-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.10-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.38.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==24.2.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.10\"\n },\n \ - \ \"sha256Digest\": \"e2c5055b87d3529d90574e67988e7cf7efabf8ce3515bb2e1017ae613bcc89a1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.11-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.11-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.38.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==24.2.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.11\"\n },\n \ - \ \"sha256Digest\": \"1587e042d7e37ca66d7cdff96f06f334e388e01689efdbf1622daff5d56182e1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.12-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.12-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.38.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==24.2.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.12\"\n },\n \ - \ \"sha256Digest\": \"1b2613fe1d4a12eb5cdcf3d57189d4a3213d572fdf0c67146d8d7cd5910190ac\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.13-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.13-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.38.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==24.2.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.13\"\n },\n \ - \ \"sha256Digest\": \"6e145db641dd77cd5d73271562f74f70d9bc4171bec05449b7722d54eb1e0ba2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.14-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.14-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.38.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==24.2.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.14\"\n },\n \ - \ \"sha256Digest\": \"06f3da32b2bb7f9b967da242824bceb89ed98ccde37ef18d5e33a17d5158d6b9\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.15-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.15-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.38.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==24.2.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.15\"\n },\n \ - \ \"sha256Digest\": \"719aa6e73bd25309ab1275ec06cce036cb650204e306606bee741e2488b0a1d2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.16-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.16-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.38.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==24.2.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.16\"\n },\n \ - \ \"sha256Digest\": \"614823c043de311a609cd257176cf611e56ddec8f6f3855ed444d77519dc50e6\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.17-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.17-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.38.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==24.2.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.17\"\n },\n \ - \ \"sha256Digest\": \"3be716e8862c6c67da236e17f0a88e369da5ac41e6d5cb350e40166eed7953e2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.18-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.18-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.38.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==24.2.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.18\"\n },\n \ - \ \"sha256Digest\": \"69b91412f1df60a38bac3b5965dc438537f6dd66176e561cc0f145be4f1c6ef3\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.19-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.19-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.38.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==24.2.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.19\"\n },\n \ - \ \"sha256Digest\": \"c7a8bde1873739b3a97ccf6d343d483fe18e475f19e601e29a607b299503c3bd\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.20-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.3.20-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.38.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==24.2.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.3.20\"\n },\n \ - \ \"sha256Digest\": \"3d09e173ad23cbaaa45736b699dc48f7704ac31eadb14eec72b89ec101d674f1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.4.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedk8s-1.4.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.38.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/markdown\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"k8connect@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedk8s\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ - \ \"kubernetes (==24.2.0)\",\n \ - \ \"pycryptodome (==3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s Extension\"\ - ,\n \"version\": \"1.4.0\"\n },\n \ - \ \"sha256Digest\": \"f7685ff5b3e92480db3317cf5cdea31c5a5e8c4527356455df106c644c752c57\"\ - \n }\n ],\n \"connectedmachine\": [\n \ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedmachine-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"connectedmachine\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedmachine Extension\"\ - ,\n \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"0f4d009da4e091aece74cd53833fe63e5af18d68fcf6308a08155ee5284f12fb\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"connectedmachine-0.2.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedmachine\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"connectedmachine\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools ConnectedMachine\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"b9a2f3ea3fb7a4c981fad30ff670ff3ca1f8fbef0aede36a8e8a20050b1a245d\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"connectedmachine-0.3.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedmachine\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"connectedmachine\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools ConnectedMachine\ - \ Extension\",\n \"version\": \"0.3.0\"\n \ - \ },\n \"sha256Digest\": \"591bed0d6a6251028471bac6a9ebf0f641d7765bf04b13271aae29c37491ba55\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.4.0-py3-none-any.whl\"\ - ,\n \"filename\": \"connectedmachine-0.4.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedmachine\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"connectedmachine\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools ConnectedMachine\ - \ Extension\",\n \"version\": \"0.4.0\"\n \ - \ },\n \"sha256Digest\": \"2183f183dac5e88820b8f69d8e56936a94b6b2bd16c7619c41f7ceac52951abf\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.4.1-py3-none-any.whl\"\ - ,\n \"filename\": \"connectedmachine-0.4.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedmachine\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"connectedmachine\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools ConnectedMachine\ - \ Extension\",\n \"version\": \"0.4.1\"\n \ - \ },\n \"sha256Digest\": \"44d84d979b15f9bdc0b5e873e308a03ad66edecf9bcf8dc1bbd31d81734cee0d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.5.0-py3-none-any.whl\"\ - ,\n \"filename\": \"connectedmachine-0.5.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedmachine\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"connectedmachine\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools ConnectedMachine\ - \ Extension\",\n \"version\": \"0.5.0\"\n \ - \ },\n \"sha256Digest\": \"c83822da39abbd0d12672816ab36eb1f1f2def74008464a1d5cea859c54d615f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.5.1-py3-none-any.whl\"\ - ,\n \"filename\": \"connectedmachine-0.5.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedmachine\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"connectedmachine\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools ConnectedMachine\ - \ Extension\",\n \"version\": \"0.5.1\"\n \ - \ },\n \"sha256Digest\": \"cbba314a6f37d094709850951c984093c25e1eed25c3e9aae81f584e2bc20655\"\ - \n }\n ],\n \"connectedvmware\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedvmware-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development Status ::\ - \ 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"connectedvmware\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedvmware Extension\"\ - ,\n \"version\": \"0.1.2\"\n },\n \ - \ \"sha256Digest\": \"5bbabea61360ad74e987a33b155e267c2f940678d9220210999e9e723541d123\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedvmware-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development Status ::\ - \ 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"connectedvmware\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedvmware Extension\"\ - ,\n \"version\": \"0.1.3\"\n },\n \ - \ \"sha256Digest\": \"481fd314b1681185d2d64d1ea21d5591d0bf8411786e521e5bc9dae8eb862415\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedvmware-0.1.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development Status ::\ - \ 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"connectedvmware\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedvmware Extension\"\ - ,\n \"version\": \"0.1.4\"\n },\n \ - \ \"sha256Digest\": \"a39af3a33da02598ec45f4b6167c2f5a25030e8fefd8d2aff186d604cb46e3db\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedvmware-0.1.5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development Status ::\ - \ 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"connectedvmware\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedvmware Extension\"\ - ,\n \"version\": \"0.1.5\"\n },\n \ - \ \"sha256Digest\": \"9b9ecb66734d8c31410b652d417deef9e35e2624873b36c0f3d6f90634d807e8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedvmware-0.1.6-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development Status ::\ - \ 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"connectedvmware\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedvmware Extension\"\ - ,\n \"version\": \"0.1.6\"\n },\n \ - \ \"sha256Digest\": \"3e13df39d8993cfe5ab0bf0821f335dc44bf2919c57d73ec88156671041ad239\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedvmware-0.1.7-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development Status ::\ - \ 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"arcprivatecloudsfte@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"connectedvmware\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedvmware\ - \ Extension\",\n \"version\": \"0.1.7\"\n \ - \ },\n \"sha256Digest\": \"857f7627ae3e618e9dc09c8ce882349593ef23237fcc24174a5097c51f88d86e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.8-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedvmware-0.1.8-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development Status ::\ - \ 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"arcprivatecloudsfte@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedvmware\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"pwinput\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedvmware Extension\"\ - ,\n \"version\": \"0.1.8\"\n },\n \ - \ \"sha256Digest\": \"f560b7311cf3c41102b5c6e93410b446fcb534dbf00c8b853c923580ac703269\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.9-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedvmware-0.1.9-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development Status ::\ - \ 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"arcprivatecloudsfte@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedvmware\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"pwinput\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedvmware Extension\"\ - ,\n \"version\": \"0.1.9\"\n },\n \ - \ \"sha256Digest\": \"09d4855a4f1b218b3a4179f5158dd47cdb44828f4fdca43396d19d93ad80f2db\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.10-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedvmware-0.1.10-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development Status ::\ - \ 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"arcprivatecloudsfte@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"connectedvmware\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"pwinput\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Connectedvmware Extension\"\ - ,\n \"version\": \"0.1.10\"\n },\n \ - \ \"sha256Digest\": \"3b0afa12344909f45d146ee1ae7eab87928fd6836d8875f2126ac32ad0df23bb\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.11-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedvmware-0.1.11-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development Status ::\ - \ 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"arcprivatecloudsfte@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"connectedvmware\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedvmware\ - \ Extension\",\n \"version\": \"0.1.11\"\n \ - \ },\n \"sha256Digest\": \"48e2947e084455712603478c7bfa574ed88930fc1b9b7cd62ba000d198a17a30\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.12-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connectedvmware-0.1.12-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development Status ::\ - \ 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"arcprivatecloudsfte@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"connectedvmware\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedvmware\ - \ Extension\",\n \"version\": \"0.1.12\"\n \ - \ },\n \"sha256Digest\": \"cd36eaa8d02f7fd4e0645884a31e8636630d49e1d1205461f0816edbd03ed4ad\"\ - \n }\n ],\n \"connection-monitor-preview\": [\n \ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connection_monitor_preview-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"connection_monitor_preview-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"2.0.82\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.80\",\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connection-monitor-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"connection-monitor-preview\",\n\ - \ \"summary\": \"Microsoft Azure Command-Line Connection\ - \ Monitor V2 Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"9a796d5187571990d27feb9efeedde38c194f13ea21cbf9ec06131196bfd821d\"\ - \n }\n ],\n \"containerapp\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.1.0\"\n },\n \"sha256Digest\"\ - : \"3731c1d2222805059ca37e31cf85e9bc4af7981295e478d22a925d9ff4ce3a68\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.0\"\n },\n \"sha256Digest\"\ - : \"0ec557558700384ee58636bd759c7047a124971e7b92c03d835d0d03614da22a\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.1\"\n },\n \"sha256Digest\"\ - : \"79b636f16c37152c2e3b23e24f421aed3fa159897afd2b61d80da73751d61645\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"2.36.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.2\"\n },\n \"sha256Digest\"\ - : \"581e704f223937b0e7fb99c0323768a04c956ade8b06cb7140454c06b85f254b\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"2.36.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.3\"\n },\n \"sha256Digest\"\ - : \"63eb3289319ee4151d916329b368354085074b7b3ea21ed1d16d83a29cbe16b7\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"2.36.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.4\"\n },\n \"sha256Digest\"\ - : \"e247b0bec42db5b95c37c879ea939ec1860b8e14b0d8aa54a5a5187fc52bec64\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.5\"\n },\n \"sha256Digest\"\ - : \"876cc6040ee07654eb9c45d6fe603531797902f06fa0caebc4ad1961f78c8d76\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.6-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.6\"\n },\n \"sha256Digest\"\ - : \"610df666637402173996efa3b8aaac0e4ae0a1608f5ea1006d252cda5f3eb4c6\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.7-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.7\"\n },\n \"sha256Digest\"\ - : \"3e5b920980b5492929aeaa40ab7b1d2fd5a4dfa527b6c832c072792633055a8a\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.8-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.8-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.8\"\n },\n \"sha256Digest\"\ - : \"788c9db70ae69b9f69ca24bda2438af8ea494de7ed4c32e9e4d83b351d30e796\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.9-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.9-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.9\"\n },\n \"sha256Digest\"\ - : \"148a1535e8327b1b4b091614d0b579d8638573286a2cc5878566032039974556\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.10-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.10-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.10\"\n },\n \"sha256Digest\"\ - : \"b9cbfd7a5b328d7aeba314b96602b77d711df482651b251e91bee9ac36697b47\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.11-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.11-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.11\"\n },\n \"sha256Digest\"\ - : \"d04b9087ac480c3d7cbea6bef7ae5f98d50fcf6fe35ed0c358bb27564cefca9b\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.12-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.12-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.12\"\n },\n \"sha256Digest\"\ - : \"fa278cee406a63a4131f48980715c6962cf2f8d0f14f92b3c6c846c59091aa8a\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.13-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.13-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\",\n \"pycomposefile (>=0.0.29)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools Containerapp Extension\",\n \"version\": \"0.3.13\"\ - \n },\n \"sha256Digest\": \"b79460358c83ff69dd942ed9bb5194f03d42062426a471194d9e1fc9f4121346\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.14-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.14-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\",\n \"pycomposefile (>=0.0.29)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools Containerapp Extension\",\n \"version\": \"0.3.14\"\ - \n },\n \"sha256Digest\": \"61ed509c783ecd07e6f94557c090150a818962b148def5e15cc30603f9bca196\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.15-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.15-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\",\n \"pycomposefile (>=0.0.29)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools Containerapp Extension\",\n \"version\": \"0.3.15\"\ - \n },\n \"sha256Digest\": \"fab4b6bbed951ad7e94b50af4e169ece562379b91a7ca3fae1987ebed01470e4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.16-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.16-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\",\n \"pycomposefile (>=0.0.29)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools Containerapp Extension\",\n \"version\": \"0.3.16\"\ - \n },\n \"sha256Digest\": \"de6bddcca942bbb447c680148c22ce12f7f0279b6437c839f9ad82db3e3062fe\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.17-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.17-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\",\n \"pycomposefile (>=0.0.29)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools Containerapp Extension\",\n \"version\": \"0.3.17\"\ - \n },\n \"sha256Digest\": \"08afc8c17a73d4a910d210a8863a7822de732e2a763d5ef7c2971fc1a9bbf9e8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.18-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.18-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\",\n \"pycomposefile (>=0.0.29)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools Containerapp Extension\",\n \"version\": \"0.3.18\"\ - \n },\n \"sha256Digest\": \"2f86a9d6eae01dd16801576febf29f42dbb5c1b11ce6a4d461df1804c735f386\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.19-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.19-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\",\n \"pycomposefile (>=0.0.29)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools Containerapp Extension\",\n \"version\": \"0.3.19\"\ - \n },\n \"sha256Digest\": \"191040f708d6f49ab908f364fc653e5398cd28d1bbd4f0c172e541d71c5ba0f3\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.20-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.20-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\",\n \"pycomposefile (>=0.0.29)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools Containerapp Extension\",\n \"version\": \"0.3.20\"\ - \n },\n \"sha256Digest\": \"6c8affb758834439b76edaa724ecf7bc77a6f1d08979dad0a8178f9434406b15\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.21-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.21-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"azure-cli-core\",\n \"pycomposefile (>=0.0.29)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools Containerapp Extension\",\n \"version\": \"0.3.21\"\ - \n },\n \"sha256Digest\": \"d63c2004502f698da946ebf552b748b0a7fc166a1f6599f6c1dd3a46309d1994\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.23-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.23-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"pycomposefile (>=0.0.29)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.23\"\n },\n \ - \ \"sha256Digest\": \"192601c40b3570606161657d5ac719df246721763296e57251eb2cddfa45235a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.24-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.24-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"pycomposefile (>=0.0.29)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.24\"\n },\n \ - \ \"sha256Digest\": \"512343a595e7bd5b49fbe3708e2251b3b6d3d951849fad180979466b57ec6a08\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.25-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.25-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"pycomposefile (>=0.0.29)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.25\"\n },\n \ - \ \"sha256Digest\": \"7202c98ff5a6bdb549cf5f87226c76f8dab8b830076a8492099daac4871ef682\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.26-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.26-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"pycomposefile (>=0.0.29)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.26\"\n },\n \ - \ \"sha256Digest\": \"d1dc15399cd9ec15f0c44d7f08bc6ba2e7d95665e3e26da97795fcbb70e763df\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.27-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.27-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"pycomposefile (>=0.0.29)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.27\"\n },\n \ - \ \"sha256Digest\": \"dd74e5182921a7d38bfa2a29ba22bc8cb2308695b2ffdc8a1054d7ff7712205f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.28-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.28-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"pycomposefile (>=0.0.29)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.28\"\n },\n \ - \ \"sha256Digest\": \"150df41ec23a399240ab9cac6600d570d7c0c4354744e258cc8507935304ebd5\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.29-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.29-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"pycomposefile (>=0.0.29)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.29\"\n },\n \ - \ \"sha256Digest\": \"be031f59aed530e28d3c3988bb3ebfe87b278894890bbde4cd6e7ecafb724e12\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.30-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.30-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"pycomposefile (>=0.0.29)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.30\"\n },\n \ - \ \"sha256Digest\": \"1d36c948a9974cf4ddac58739c87e4c83dcd9b12a377ef1232091cb1539ffb04\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.31-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.31-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"pycomposefile (>=0.0.29)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.31\"\n },\n \ - \ \"sha256Digest\": \"c32a6bcf2318889ca0096e428f5d612ec32a00871219c03e200bcbe109238e19\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.32-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.32-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"pycomposefile (>=0.0.29)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.32\"\n },\n \ - \ \"sha256Digest\": \"21ca6a15900e60b7fb6c586f9ae9661ee2a5245661dd265016b0ef214bd3fb90\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.33-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.33-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"pycomposefile (>=0.0.29)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \ - \ \"version\": \"0.3.33\"\n },\n \ - \ \"sha256Digest\": \"8385c13f0f938930faaeed4dad67c1cc03b601bfb626e86e29bf87a310270166\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.34-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.34-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"docker\",\n \"pycomposefile (>=0.0.29)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools Containerapp Extension\",\n \"version\": \"0.3.34\"\ - \n },\n \"sha256Digest\": \"fee4dbe509a581c8a72f269baeaa50fbf8459d1b13391446c74300283d23919f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.35-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.35-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"docker\",\n \"pycomposefile (>=0.0.29)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools Containerapp Extension\",\n \"version\": \"0.3.35\"\ - \n },\n \"sha256Digest\": \"980914fb40826959f0bd2e8e89a7671c977cc179d7728e43a602cff9f1ff193e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.36-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp-0.3.36-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"docker\",\n \"pycomposefile (>=0.0.29)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools Containerapp Extension\",\n \"version\": \"0.3.36\"\ - \n },\n \"sha256Digest\": \"233c449a1dd754fe559fbbc4b2cb1ce148d791fdc28b4b15fdc0349b40df13a3\"\ - \n }\n ],\n \"containerapp-preview\": [\n \ - \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp_preview-1.0.0b1-py3-none-any.whl\"\ - ,\n \"filename\": \"containerapp_preview-1.0.0b1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"Programming\ - \ Language :: Python :: 3.10\",\n \"License :: OSI\ - \ Approved :: MIT License\"\n ],\n \"\ - extensions\": {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n\ - \ \"name\": \"Microsoft Corporation\",\n\ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/containerapp-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"containerapp-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp-preview\ - \ Extension\",\n \"version\": \"1.0.0b1\"\n \ - \ },\n \"sha256Digest\": \"fd79bb8ec5e9f7ecc5dc57f8dd02f442343ce01866d314d380c8e99cf0b377de\"\ - \n }\n ],\n \"cosmosdb-preview\": [\n \ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"83be5a723d6a0063c4cd17db52a172ef8f9453435d316ef0abbd2ca2dd8e6ca8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview Extension\"\ - ,\n \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"d8199ccce62c5c7f8670ddf7eb27493fa1c5079ed152607c958fc2b53201fc83\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.3.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.3.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview Extension\"\ - ,\n \"version\": \"0.3.0\"\n },\n \ - \ \"sha256Digest\": \"079af4056ab89f7e27d2a3b6b22c4147b47ce3a27f744ce8b3cde38998afa89e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.4.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.4.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview Extension\"\ - ,\n \"version\": \"0.4.0\"\n },\n \ - \ \"sha256Digest\": \"751699f42dffaef4a365aeea0ddcc5432a3bafeb0550ee6ff628df1b0a9e02bd\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.5.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.5.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview Extension\"\ - ,\n \"version\": \"0.5.0\"\n },\n \ - \ \"sha256Digest\": \"dd61fd0b1e3b67b63bf731886995743798b72f6c9b00c3c8a589b3cb1b7be3cf\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.6.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.6.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview Extension\"\ - ,\n \"version\": \"0.6.0\"\n },\n \ - \ \"sha256Digest\": \"6132e8c9597e3ab57657b6f3607e19c457e9a08a82a1c1b4825b8ed4ae02c04b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.7.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.7.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview Extension\"\ - ,\n \"version\": \"0.7.0\"\n },\n \ - \ \"sha256Digest\": \"c11b611e3c8eeaaf2b6a5ca935ae7e6072834be77a777f1749d7c9c6419ae55a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.8.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.8.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview Extension\"\ - ,\n \"version\": \"0.8.0\"\n },\n \ - \ \"sha256Digest\": \"513b9683ef78ddb6316ed2d8b41f64f6e6278ae169aa3d5735c061108b40ec78\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.8.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.8.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview Extension\"\ - ,\n \"version\": \"0.8.1\"\n },\n \ - \ \"sha256Digest\": \"12dcc1e32460d12bf62cf3f5aa67f519dc0f48a4a7d70e36c52b24d50f7cd251\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.9.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.9.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview Extension\"\ - ,\n \"version\": \"0.9.0\"\n },\n \ - \ \"sha256Digest\": \"689f99954b56367f37956efcc80911719052048b0e0203b048a425556686d9f1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.10.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.10.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview Extension\"\ - ,\n \"version\": \"0.10.0\"\n },\n \ - \ \"sha256Digest\": \"de57720e30785823d821ade1f08886871aa3188335fb5105e960833f2aebacdb\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.11.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.11.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview Extension\"\ - ,\n \"version\": \"0.11.0\"\n },\n \ - \ \"sha256Digest\": \"e9a21eab81616e7f71b5a4d764e541cbdea22d3dff3a8fc326f1ef06a1067421\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.12.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.12.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview Extension\"\ - ,\n \"version\": \"0.12.0\"\n },\n \ - \ \"sha256Digest\": \"e0f2007be10a9821d12ff7327b35480ddb8df57e8f990ecfdeedb256d9c70001\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.13.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.13.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview Extension\"\ - ,\n \"version\": \"0.13.0\"\n },\n \ - \ \"sha256Digest\": \"5dcfac7215584840899fb0cd1ab853c20b7915400a02981850dae857ba20177d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.14.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.14.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview\ - \ Extension\",\n \"version\": \"0.14.0\"\n \ - \ },\n \"sha256Digest\": \"7ada2c34d023530ef5ae2402966b362d36675fc247ad2b41917b8114b2af9c72\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.15.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.15.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview\ - \ Extension\",\n \"version\": \"0.15.0\"\n \ - \ },\n \"sha256Digest\": \"0c3ee01e583ebc81cee2908129bb988c69f50bcb2ca8425b788de378f4839b10\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.16.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.16.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview\ - \ Extension\",\n \"version\": \"0.16.0\"\n \ - \ },\n \"sha256Digest\": \"50882c87c092eb89310c0f7ebb800b3da9163d791f4417caa22ed5b47494a5b7\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.17.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.17.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview\ - \ Extension\",\n \"version\": \"0.17.0\"\n \ - \ },\n \"sha256Digest\": \"73a220dda84f5425efb960d02a1017308c4d6642fded49a7e61d6de578f4fceb\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.18.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.18.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview\ - \ Extension\",\n \"version\": \"0.18.0\"\n \ - \ },\n \"sha256Digest\": \"9d38dbc628c65dec65f111d072eecea6ca91043883b5a29f561767e1ce634cc7\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.18.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.18.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview\ - \ Extension\",\n \"version\": \"0.18.1\"\n \ - \ },\n \"sha256Digest\": \"e75b001721b1a542f8ab8e15105e7b6502a1dc68f2850c20a97e67a6eecb003f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.19.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.19.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview\ - \ Extension\",\n \"version\": \"0.19.0\"\n \ - \ },\n \"sha256Digest\": \"aee16bae5d9bcde85fba80e6be5483c63709339f2227378ae4a721fad9a83ee0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.20.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.20.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview\ - \ Extension\",\n \"version\": \"0.20.0\"\n \ - \ },\n \"sha256Digest\": \"0e759bad4c3bd91e197d357ea804827e2030812b0751c9bac4472711e5baf4e2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.21.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.21.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview\ - \ Extension\",\n \"version\": \"0.21.0\"\n \ - \ },\n \"sha256Digest\": \"969496859093a6106bd2b10fff91121087f42a2bab4419f0dfcda52339681969\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.22.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.22.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview\ - \ Extension\",\n \"version\": \"0.22.0\"\n \ - \ },\n \"sha256Digest\": \"38a16ca955f74f0ad697a50a7e744897bc3c8ccd9ba9a1255156b318c4011c19\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.23.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.23.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview\ - \ Extension\",\n \"version\": \"0.23.0\"\n \ - \ },\n \"sha256Digest\": \"48bfbb7f278c721a249124023a097c68f89286ad37a5d871fe8d081a4b95b9d8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.24.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.24.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview\ - \ Extension\",\n \"version\": \"0.24.0\"\n \ - \ },\n \"sha256Digest\": \"60dd2f7b0dda74ccffec6adaf37dee10be09c03d13c9a664848933e052c5a4de\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.25.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"cosmosdb_preview-0.25.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"kakhandr@microsoft.com\"\ - ,\n \"name\": \"Kalyan khandrika\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"cosmosdb-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview\ - \ Extension\",\n \"version\": \"0.25.0\"\n \ - \ },\n \"sha256Digest\": \"83fb8f0f097271a5baec41e6405f2f750beea3d8fbc1ac2e1c8cd2f32cb4f90b\"\ - \n }\n ],\n \"costmanagement\": [\n {\n\ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/costmanagement-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"costmanagement-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"costmanagement\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools CostManagementClient Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"d5c8be4d6f3e59a44da32af66f8855c24d9855c5b7bdd2f6571c8721afa20223\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/costmanagement-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"costmanagement-0.1.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/costmanagement\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"costmanagement\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools CostManagementClient\ - \ Extension\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"0a6e0ee27fd5896b45eabf0c9227e63b3c1bbc4975adf4cb566647396fa511f2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/costmanagement-0.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"costmanagement-0.2.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/costmanagement\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"costmanagement\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools CostManagementClient\ - \ Extension\",\n \"version\": \"0.2.1\"\n \ - \ },\n \"sha256Digest\": \"c6ca26bcffe2b897fc35b560f6fbf620ee563daf2396dc1bae67c8e4bd0e64c3\"\ - \n }\n ],\n \"csvmware\": [\n {\n \ - \ \"downloadUrl\": \"https://github.com/Azure/az-csvmware-cli/releases/download/0.3.0/csvmware-0.3.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"csvmware-0.3.0-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"shimitta@microsoft.com\",\n \ - \ \"name\": \"Shivam Mittal\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"csvmware\",\n \ - \ \"summary\": \"Manage Azure VMware Solution by CloudSimple.\",\n \ - \ \"version\": \"0.3.0\"\n },\n \ - \ \"sha256Digest\": \"dfb9767f05ac13c762ea9dc4327169e63a5c11879123544b200edb9a2c9a8a42\"\ - \n }\n ],\n \"custom-providers\": [\n \ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/custom_providers-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"custom_providers-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"custom-providers\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Custom Providers Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"7da462aaa336184b53d7b0b831c0fa77c4239dabe4e70fa4e500e250cf11a8ec\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/custom_providers-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"custom_providers-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/custom-providers\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"custom-providers\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Custom Providers\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"8c0f062d96523bd6a95d53f09e48f9d47bf7aa75a9b735e93e6ee09647638b52\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/custom_providers-0.2.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"custom_providers-0.2.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/custom-providers\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"custom-providers\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Custom Providers\ - \ Extension\",\n \"version\": \"0.2.1\"\n \ - \ },\n \"sha256Digest\": \"a9938f09c86fa4575e3c887206908cac15920af528c537c0b998362a1c43daf7\"\ - \n }\n ],\n \"customlocation\": [\n {\n\ - \ \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/customlocation/customlocation-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"customlocation-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"arcplatform-core@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://msazure.visualstudio.com/AzureArcPlatform/_git/customlocation-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"customlocation\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Customlocation\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"7d91a34784d92c77c4233c4578043e6fac729ad42b3b29d5d597c12b037d2267\"\ - \n },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/customlocation/customlocation-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"customlocation-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"arcplatform-core@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://msazure.visualstudio.com/AzureArcPlatform/_git/customlocation-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"customlocation\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Customlocation\ - \ Extension\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"fbda1780a9d1c8eec9a147d09f7681f47238a574333eaeddb8284cd7fa881815\"\ - \n },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/customlocation/customlocation-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"customlocation-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"arcplatform-core@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://msazure.visualstudio.com/AzureArcPlatform/_git/customlocation-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"customlocation\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Customlocation\ - \ Extension\",\n \"version\": \"0.1.2\"\n \ - \ },\n \"sha256Digest\": \"7dfa4f2231fd4ce0b50eeb5a5e470e1f7e510adb2f8602167157e508dbf84e77\"\ - \n },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/customlocation/customlocation-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"customlocation-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.67\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"arcplatform-core@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/customlocation-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"customlocation\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Customlocation\ - \ Extension\",\n \"version\": \"0.1.3\"\n \ - \ },\n \"sha256Digest\": \"5e36435b1a81de25e74e70c45c2ac9f98065138c35050f29210ae40c18484e28\"\ - \n }\n ],\n \"databox\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databox-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"databox-0.1.0-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"Programming Language\ - \ :: Python :: 3.8\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"databox\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools DataBox Extension\",\n \ - \ \"version\": \"0.1.0\"\n },\n \"sha256Digest\"\ - : \"93cac253cd79728eb333715ae56111ffaa287c9d650e924ea07875ab36906974\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databox-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"databox-0.1.1-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.4\"\ - ,\n \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databox\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"databox\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataBox Extension\"\ - ,\n \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"210ab818a566ec69c923c1bc11f8f50295c19c30be378ab67be340a70e921aa1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databox-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"databox-0.1.2-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.4\"\ - ,\n \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databox\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"databox\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataBox Extension\"\ - ,\n \"version\": \"0.1.2\"\n },\n \ - \ \"sha256Digest\": \"e247449406a189a8e9bbe320b1b4702846cf58da42b5a9b07ffa3e1db01ce6b0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databox-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"databox-0.1.3-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.4\"\ - ,\n \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databox\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"databox\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataBox Extension\"\ - ,\n \"version\": \"0.1.3\"\n },\n \ - \ \"sha256Digest\": \"320e4ae8e3d17c9ca8b6c92ad47b04f20d7530340897d2fcc6e4a4ade0dfa7c2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databox-1.0.0-py3-none-any.whl\"\ - ,\n \"filename\": \"databox-1.0.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.48.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/databox\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"databox\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Databox Extension.\"\ - ,\n \"version\": \"1.0.0\"\n },\n \ - \ \"sha256Digest\": \"3953bf3f61f2654d4d4cd68ed34b5b8982859222a6e2e8f32581399f1db04a50\"\ - \n }\n ],\n \"databricks\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"databricks-0.1.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExprimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"databricks\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools DatabricksClient Extension\",\n \ - \ \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"36130c36c5d4dd7a76952c3d5b443cf2a76447ccce41094e0b625b85139a366a\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"databricks-0.2.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExprimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"databricks\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools DatabricksClient Extension\",\n \ - \ \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"229272c5b6abcfc37abe86600db356c54ef664b6681b2f8b705aa50be472b1bc\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"databricks-0.3.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"databricks\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools DatabricksClient Extension\",\n \ - \ \"version\": \"0.3.0\"\n },\n \ - \ \"sha256Digest\": \"daf76d6aea0025d4783926d25fa813b74c1bcaa67bf8d937cc0d72529d06b9fe\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.4.0-py3-none-any.whl\"\ - ,\n \"filename\": \"databricks-0.4.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"databricks\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools DatabricksClient Extension\",\n \ - \ \"version\": \"0.4.0\"\n },\n \ - \ \"sha256Digest\": \"db716fa7a65bfb977ea4d6eb4c5ad56c5dfd39062f0d179c5d3aceff959c2a26\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.5.0-py3-none-any.whl\"\ - ,\n \"filename\": \"databricks-0.5.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"databricks\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools DatabricksClient Extension\",\n \ - \ \"version\": \"0.5.0\"\n },\n \ - \ \"sha256Digest\": \"9a7bca2c8828959ed048b883da9c2b62c1597f5c6bd475c5269c30a27282080f\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.6.0-py3-none-any.whl\"\ - ,\n \"filename\": \"databricks-0.6.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"databricks\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools DatabricksClient Extension\",\n \ - \ \"version\": \"0.6.0\"\n },\n \ - \ \"sha256Digest\": \"46a77fcd4b31191ce2b2d58e58af982415ea91787628426bd2b3d567da273411\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.7.0-py3-none-any.whl\"\ - ,\n \"filename\": \"databricks-0.7.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"databricks\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DatabricksClient\ - \ Extension\",\n \"version\": \"0.7.0\"\n \ - \ },\n \"sha256Digest\": \"236f561c6a20141ae854d1dd64a6e5a0b4636d98517e5ba245401882cc7fbd92\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.7.1-py3-none-any.whl\"\ - ,\n \"filename\": \"databricks-0.7.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databricks\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"databricks\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DatabricksClient\ - \ Extension\",\n \"version\": \"0.7.1\"\n \ - \ },\n \"sha256Digest\": \"f086792f8910601c68fbe303f7831f77c79486fdf8e44039b1505d2344bac197\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-0.7.2-py3-none-any.whl\"\ - ,\n \"filename\": \"databricks-0.7.2-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databricks\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"databricks\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DatabricksClient\ - \ Extension\",\n \"version\": \"0.7.2\"\n \ - \ },\n \"sha256Digest\": \"daf595a051a47dded0fbe18a289e454f221eaaae11d1aadaa3f45612aff1b05f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-0.7.3-py3-none-any.whl\"\ - ,\n \"filename\": \"databricks-0.7.3-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databricks\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"databricks\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DatabricksClient\ - \ Extension\",\n \"version\": \"0.7.3\"\n \ - \ },\n \"sha256Digest\": \"b70d79f20b8b2e116df9afc321243d847bbe83db75d863e2e3a00c79bbd0908b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-0.8.0-py3-none-any.whl\"\ - ,\n \"filename\": \"databricks-0.8.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databricks\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"databricks\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DatabricksClient\ - \ Extension\",\n \"version\": \"0.8.0\"\n \ - \ },\n \"sha256Digest\": \"9abaf70996f462be238438a881f627806d10671897f9b1d562e4caef9e5ad3b1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-0.9.0-py3-none-any.whl\"\ - ,\n \"filename\": \"databricks-0.9.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.43.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/databricks\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"databricks\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DatabricksClient\ - \ Extension\",\n \"version\": \"0.9.0\"\n \ - \ },\n \"sha256Digest\": \"d939ba58d20e42bb3a54ae5e801e5f48b8ab797d054844fdbad0fdae429e0dbe\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-0.10.0-py3-none-any.whl\"\ - ,\n \"filename\": \"databricks-0.10.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.45.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/databricks\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"databricks\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DatabricksClient\ - \ Extension\",\n \"version\": \"0.10.0\"\n \ - \ },\n \"sha256Digest\": \"619c8b09f85879e805abb4a4d177c2bd9d932be419b5560c1e000d58b6c7e4ef\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-0.10.1-py3-none-any.whl\"\ - ,\n \"filename\": \"databricks-0.10.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.45.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/databricks\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"databricks\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DatabricksClient\ - \ Extension\",\n \"version\": \"0.10.1\"\n \ - \ },\n \"sha256Digest\": \"e2f03eaf25331c9697b89b8365ebaa0669bc0022d2e77d6f9363468d00323ebc\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-0.10.2-py3-none-any.whl\"\ - ,\n \"filename\": \"databricks-0.10.2-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.45.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/databricks\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"databricks\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DatabricksClient\ - \ Extension\",\n \"version\": \"0.10.2\"\n \ - \ },\n \"sha256Digest\": \"7db0b97b497512671343c472fad2ca7a0987ac2cddc0ae0ceab227e3d017718f\"\ - \n }\n ],\n \"datadog\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datadog-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"datadog-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datadog\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datadog\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools MicrosoftDatadogClient\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"9a5e9535e797f59059d07fcfb4dd456541d0813f97dae344180f76e279265086\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datadog-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"datadog-0.1.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.17.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datadog\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datadog\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools MicrosoftDatadogClient\ - \ Extension\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"9a38fd5d6d01646f299ee7b5f68e82ad708889c7d0bd72e0b6b6b13e5455e937\"\ - \n }\n ],\n \"datafactory\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/datafactory-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"datafactory-0.1.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datafactory\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataFactoryManagementClient\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"f49b145f8125cde30aedf5080af90e26277ad1527cfb13cff0d72838298241d3\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/datafactory-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"datafactory-0.2.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datafactory\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataFactoryManagementClient\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"7cadaec354c8cbd4eae3465e385685807f619c8e7a2a093e6d4c68a9466b1e6a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-0.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"datafactory-0.2.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datafactory\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataFactoryManagementClient\ - \ Extension\",\n \"version\": \"0.2.1\"\n \ - \ },\n \"sha256Digest\": \"fd9a00c006a44b435d458b3f8523fceeec7e9d3d745cdc037876b8ad2b19ea9f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-0.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"datafactory-0.3.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datafactory\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataFactoryManagementClient\ - \ Extension\",\n \"version\": \"0.3.0\"\n \ - \ },\n \"sha256Digest\": \"0d68e01c4b7ef9ce6ccf7f2594f3faf19600dbb8ec7d395bc9ad4b4bdab8a245\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-0.4.0-py3-none-any.whl\"\ - ,\n \"filename\": \"datafactory-0.4.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datafactory\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataFactoryManagementClient\ - \ Extension\",\n \"version\": \"0.4.0\"\n \ - \ },\n \"sha256Digest\": \"95c6024d8fd35fca5280de274660abb3f249af868c6f5b75c3581df536ff4a13\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-0.5.0-py3-none-any.whl\"\ - ,\n \"filename\": \"datafactory-0.5.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datafactory\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataFactoryManagementClient\ - \ Extension\",\n \"version\": \"0.5.0\"\n \ - \ },\n \"sha256Digest\": \"5aade65b73ff133eb5442a8420818faf17ed398660c081bd92af87edbc9ab3e6\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-0.6.0-py3-none-any.whl\"\ - ,\n \"filename\": \"datafactory-0.6.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/datafactory\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datafactory\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataFactoryManagementClient\ - \ Extension\",\n \"version\": \"0.6.0\"\n \ - \ },\n \"sha256Digest\": \"c34245db473f35d029c6a794527304aa110f230821386c8687e4a0ce5d03dc61\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-0.7.0-py3-none-any.whl\"\ - ,\n \"filename\": \"datafactory-0.7.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/datafactory\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datafactory\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataFactoryManagementClient\ - \ Extension\",\n \"version\": \"0.7.0\"\n \ - \ },\n \"sha256Digest\": \"4820123af622fa8961940a33343b4538851fd506b35e100da7154f71e0089a15\"\ - \n }\n ],\n \"datamigration\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"datamigration-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datamigration\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataMigrationManagementClient\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"8e43876ea91c393c01d758cba0d2f6b16964da1d90b74a6370096672186cf055\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"datamigration-0.2.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/datamigration\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datamigration\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataMigrationManagementClient\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"a2013768c643392cb0f702103eb620f98564876c1d8cfb15de4d0760d3f504ca\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"datamigration-0.3.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datamigration\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataMigrationManagementClient\ - \ Extension\",\n \"version\": \"0.3.0\"\n \ - \ },\n \"sha256Digest\": \"d9775f16fb268da7e3b86dba28d0c57e10a8bc27ef8933370180b1d8819d0642\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.3.1-py3-none-any.whl\"\ - ,\n \"filename\": \"datamigration-0.3.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datamigration\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataMigrationManagementClient\ - \ Extension\",\n \"version\": \"0.3.1\"\n \ - \ },\n \"sha256Digest\": \"170334f6cad06d78dfa9d8a954394402d5985d804756dfda3623fdc08ec5603a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.4.0-py3-none-any.whl\"\ - ,\n \"filename\": \"datamigration-0.4.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datamigration\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataMigrationManagementClient\ - \ Extension\",\n \"version\": \"0.4.0\"\n \ - \ },\n \"sha256Digest\": \"4be920adebeb6dc05855f4f79566a353e810f702f18ba24066ddf423e5ef8002\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.4.1-py3-none-any.whl\"\ - ,\n \"filename\": \"datamigration-0.4.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datamigration\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataMigrationManagementClient\ - \ Extension\",\n \"version\": \"0.4.1\"\n \ - \ },\n \"sha256Digest\": \"a8b7f0b094794cf59dcb56b8461e7db4b026061ee6e6885a1e1b78201e9b8404\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.5.0-py3-none-any.whl\"\ - ,\n \"filename\": \"datamigration-0.5.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datamigration\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataMigrationManagementClient\ - \ Extension\",\n \"version\": \"0.5.0\"\n \ - \ },\n \"sha256Digest\": \"f62423b61052378cd7f0bdc7ba498febf3508f3bf62b5e86974c6bbe0943620f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.6.0-py3-none-any.whl\"\ - ,\n \"filename\": \"datamigration-0.6.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datamigration\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataMigrationManagementClient\ - \ Extension\",\n \"version\": \"0.6.0\"\n \ - \ },\n \"sha256Digest\": \"a315ae382bf7e723da7b940d96be52b2d70afa4428296f6d4a178bd63b170105\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.6.1-py3-none-any.whl\"\ - ,\n \"filename\": \"datamigration-0.6.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datamigration\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataMigrationManagementClient\ - \ Extension\",\n \"version\": \"0.6.1\"\n \ - \ },\n \"sha256Digest\": \"4a07a5272762f8f53f9fe61b295a800e63c0ea2900a29a526df2eabbe732bca7\"\ - \n }\n ],\n \"dataprotection\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"dataprotection-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dataprotection\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"dataprotection\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-resourcegraph\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataProtectionClient\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"e98056945e1b5a1485c5c7137fa03bc5c482495f43556ee084eeb50f39a45831\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"dataprotection-0.2.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dataprotection\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"dataprotection\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-resourcegraph\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataProtectionClient\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"91286e022f5803d77cd20687d378a438a4560dd6974d814fd34f13ea5f5c8b63\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"dataprotection-0.3.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"dataprotection\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-mgmt-resourcegraph\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataProtectionClient\ - \ Extension\",\n \"version\": \"0.3.0\"\n \ - \ },\n \"sha256Digest\": \"9c85b29bf073c89ecf5424fa2159bca20416142d49ac02e5cf596a1e2cd5ccd0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.4.0-py3-none-any.whl\"\ - ,\n \"filename\": \"dataprotection-0.4.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dataprotection\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataProtectionClient\ - \ Extension\",\n \"version\": \"0.4.0\"\n \ - \ },\n \"sha256Digest\": \"f854ecd79b215fc824e2625ac5995ae8a969fca2c933fba7cde04df8a35e26b7\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.5.0-py3-none-any.whl\"\ - ,\n \"filename\": \"dataprotection-0.5.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dataprotection\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataProtectionClient\ - \ Extension\",\n \"version\": \"0.5.0\"\n \ - \ },\n \"sha256Digest\": \"0f44943c0082b21b3b8c655d092b40a09c21e8bcd46800e962eb97d151c055d5\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.6.0-py3-none-any.whl\"\ - ,\n \"filename\": \"dataprotection-0.6.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dataprotection\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataProtectionClient\ - \ Extension\",\n \"version\": \"0.6.0\"\n \ - \ },\n \"sha256Digest\": \"1284734882f589b86ac87933bbd5f13a0e74b2c745130615636aeeb52690fbb7\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.7.0-py3-none-any.whl\"\ - ,\n \"filename\": \"dataprotection-0.7.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dataprotection\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataProtectionClient\ - \ Extension\",\n \"version\": \"0.7.0\"\n \ - \ },\n \"sha256Digest\": \"79bf91539d0f66c6751c3b43e86715458c7404641396b1ed9454ab3b31968a5b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.8.0-py3-none-any.whl\"\ - ,\n \"filename\": \"dataprotection-0.8.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dataprotection\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataProtectionClient\ - \ Extension\",\n \"version\": \"0.8.0\"\n \ - \ },\n \"sha256Digest\": \"51f7831accde7b055301ece1db862138ea9016815fdd5ae44c515ae8c6b9dc0a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.8.1-py3-none-any.whl\"\ - ,\n \"filename\": \"dataprotection-0.8.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.48.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dataprotection\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataProtectionClient\ - \ Extension\",\n \"version\": \"0.8.1\"\n \ - \ },\n \"sha256Digest\": \"cb5b43fd00d2376fa8233f99996096c68a1edf20880ec3d7c0a7b8d4b1933c64\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.8.2-py3-none-any.whl\"\ - ,\n \"filename\": \"dataprotection-0.8.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.48.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dataprotection\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataProtectionClient\ - \ Extension\",\n \"version\": \"0.8.2\"\n \ - \ },\n \"sha256Digest\": \"2504dcbb3b4f3b3f1ea948a9284c9fe6d9068ca1b354316f5ed5fe70370a47d1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.9.0-py3-none-any.whl\"\ - ,\n \"filename\": \"dataprotection-0.9.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dataprotection\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataProtectionClient\ - \ Extension\",\n \"version\": \"0.9.0\"\n \ - \ },\n \"sha256Digest\": \"67f305fa33a5e7cac377f4d25105c538c4023417613869ac6b0fc822fa4cf5b5\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.9.1-py3-none-any.whl\"\ - ,\n \"filename\": \"dataprotection-0.9.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dataprotection\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataProtectionClient\ - \ Extension\",\n \"version\": \"0.9.1\"\n \ - \ },\n \"sha256Digest\": \"60c686aa2c5662af12bdda80bb515e23b589db54e815a0af02c35b567a7361ca\"\ - \n }\n ],\n \"datashare\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/datashare-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"datashare-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"datashare\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools DataShareManagementClient Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"803c3637f752b0fb77eb5272a544abafe44942ff920a020ff7ea179ace329342\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/datashare-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"datashare-0.1.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"datashare\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools DataShareManagementClient Extension\"\ - ,\n \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"c0a2b603c0abd320bc3df0a4d6c38945fd894737804690dad98896e2446763f4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datashare-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"datashare-0.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datashare\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"datashare\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DataShareManagementClient\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"f1a801bd0c38eb2ebf9c2fb4e0b43a98470ae7b40bbcd05eb2aa596d69579c9e\"\ - \n }\n ],\n \"db-up\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.1.13-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"db_up-0.1.13-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"db-up\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"Cython (==0.29.6)\",\n \ - \ \"mysql-connector-python (==8.0.13)\",\n \ - \ \"psycopg2-binary (==2.7.7)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Additional commands to simplify Azure Database workflows.\",\n \ - \ \"version\": \"0.1.13\"\n },\n \ - \ \"sha256Digest\": \"df397272396c684972d1185e16439159427795b305f67e47fc37447a0c4d1257\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.1.14-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"db_up-0.1.14-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"db-up\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"Cython (==0.29.17)\",\n \ - \ \"mysql-connector-python (==8.0.13)\",\n \ - \ \"psycopg2-binary (==2.8.5)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Additional commands to simplify Azure Database workflows.\",\n \ - \ \"version\": \"0.1.14\"\n },\n \ - \ \"sha256Digest\": \"2f456a810be680ccc5dd7658b955410582063d56573ff3c38386d5ba2aacf7ee\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.1.15-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"db_up-0.1.15-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"db-up\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"Cython (==0.29.17)\",\n \ - \ \"mysql-connector-python (==8.0.13)\",\n \ - \ \"psycopg2-binary (==2.8.5)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Additional commands to simplify Azure Database workflows.\",\n \ - \ \"version\": \"0.1.15\"\n },\n \ - \ \"sha256Digest\": \"7c8db14999b2b5a4d4b9ae870562505a120896f39c64c20501502f5fdd897911\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"db_up-0.2.0-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"db-up\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"Cython (==0.29.17)\",\n \ - \ \"mysql-connector-python (==8.0.13)\",\n \ - \ \"psycopg2-binary (==2.8.5)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Additional commands to simplify Azure Database workflows.\",\n \ - \ \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"3e5b22cfbe3a0ec63aba3040e541d6819dbb1fbdc5b49286edfd143c79a2b8cb\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.2.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"db_up-0.2.1-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"db-up\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"Cython (==0.29.17)\",\n \ - \ \"mysql-connector-python (==8.0.14)\",\n \ - \ \"psycopg2-binary (==2.8.5)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Additional commands to simplify Azure Database workflows.\",\n \ - \ \"version\": \"0.2.1\"\n },\n \ - \ \"sha256Digest\": \"384b3806d49973cc91688ced691785d83cd7c3557016edc9161c151262ae2ab5\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"db_up-0.2.2-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"db-up\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"Cython (==0.29.17)\",\n \ - \ \"mysql-connector-python (==8.0.14)\",\n \ - \ \"psycopg2-binary (==2.8.5)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Additional commands to simplify Azure Database workflows.\",\n \ - \ \"version\": \"0.2.2\"\n },\n \ - \ \"sha256Digest\": \"1b5f67a7f0e0ed8e26fe86d226e697a4a5832fc9e7d72b19b9142cc06f6569c3\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"db_up-0.2.3-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"db-up\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"Cython (==0.29.17)\",\n \ - \ \"mysql-connector-python (==8.0.14)\",\n \ - \ \"psycopg2-binary (==2.8.5)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Additional commands to simplify Azure Database workflows.\",\n \ - \ \"version\": \"0.2.3\"\n },\n \ - \ \"sha256Digest\": \"127f777b123c5829e728aef0e4bb0998d680d37510a1b402fec8caa233e5fdd8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"db_up-0.2.4-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"db-up\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"Cython (==0.29.17)\",\n \ - \ \"mysql-connector-python (==8.0.14)\",\n \ - \ \"psycopg2-binary (==2.8.5)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Additional commands to simplify Azure Database workflows.\",\n \ - \ \"version\": \"0.2.4\"\n },\n \ - \ \"sha256Digest\": \"7a891fe1ac06ac3df982a2b3cfd7be2ada8ac23e5a18763472d429c5f2c049a6\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"db_up-0.2.5-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"db-up\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"Cython (==0.29.17)\",\n \ - \ \"mysql-connector-python (==8.0.14)\",\n \ - \ \"psycopg2-binary (==2.9.1)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Additional commands to simplify Azure Database workflows.\",\n \ - \ \"version\": \"0.2.5\"\n },\n \ - \ \"sha256Digest\": \"ad178a11840ae7874bce84b3d55efda6c69325caeb6e86d0267d37fc8e56ab6e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"db_up-0.2.6-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"db-up\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"Cython (==0.29.17)\",\n \ - \ \"mysql-connector-python (==8.0.14)\",\n \ - \ \"psycopg2-binary (==2.9.1)\",\n \"pymssql\ - \ (==2.2.2)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Additional commands\ - \ to simplify Azure Database workflows.\",\n \"version\"\ - : \"0.2.6\"\n },\n \"sha256Digest\": \"d629a42206cc7bc436f8c1595058966fc50ad4d40bd9b818e8ef950d2ca7c205\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"db_up-0.2.7-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/db-up\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"db-up\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"Cython (==0.29.17)\",\n \ - \ \"mysql-connector-python (==8.0.14)\",\n \ - \ \"psycopg2-binary (==2.9.1)\",\n \"pymssql\ - \ (~=2.2.4)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Additional commands\ - \ to simplify Azure Database workflows.\",\n \"version\"\ - : \"0.2.7\"\n },\n \"sha256Digest\": \"3a3fa10842fbc8fffe5d20bc2fd078e21020f814d22a1e5e67923088d6629837\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.8-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"db_up-0.2.8-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/db-up\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"db-up\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"Cython (==0.29.17)\",\n \ - \ \"mysql-connector-python (==8.0.14)\",\n \ - \ \"psycopg2-binary (==2.9.1)\",\n \"pymssql\ - \ (==2.2.7)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Additional commands\ - \ to simplify Azure Database workflows.\",\n \"version\"\ - : \"0.2.8\"\n },\n \"sha256Digest\": \"c6be92c911449937f04a95d0f4619aa4b63b4d6f43bac87124a2671da74ff550\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.9-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"db_up-0.2.9-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/db-up\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"db-up\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"Cython (==0.29.17)\",\n \ - \ \"mysql-connector-python (==8.0.14)\",\n \ - \ \"psycopg2-binary (~=2.9.6)\",\n \"pymssql\ - \ (==2.2.7)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Additional commands\ - \ to simplify Azure Database workflows.\",\n \"version\"\ - : \"0.2.9\"\n },\n \"sha256Digest\": \"f700b75e4a127d6111134e7af5068a6d6c379c8e6ce591a1e20ae31adc766c36\"\ - \n }\n ],\n \"deploy-to-azure\": [\n {\n\ - \ \"downloadUrl\": \"https://github.com/Azure/deploy-to-azure-cli-extension/releases/download/20200318.1/deploy_to_azure-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"deploy_to_azure-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.60\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"VSTS_Social@microsoft.com\",\n \ - \ \"name\": \"Microsoft\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/deploy-to-azure-cli-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"deploy-to-azure\",\n \ - \ \"summary\": \"Deploy to Azure using Github Actions.\",\n \ - \ \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"f925080ee7abc3aef733d4c6313170bdedaa9569af1b95427383bc3c59e4ceb8\"\ - \n }\n ],\n \"desktopvirtualization\": [\n \ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/desktopvirtualization-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"desktopvirtualization-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/desktopvirtualization\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"desktopvirtualization\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DesktopVirtualizationAPIClient\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"d73c88fe0df98871a221495e000c39fbb22975fdc5066668c9ea0f578ff9a1a9\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/desktopvirtualization-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"desktopvirtualization-0.1.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/desktopvirtualization\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"desktopvirtualization\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DesktopVirtualizationAPIClient\ - \ Extension\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"8f35a96234e9c456b81f3dd086c6d7f20a9c49104cb3b277357aa9d697a02b0e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/desktopvirtualization-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"desktopvirtualization-0.2.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/desktopvirtualization\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"desktopvirtualization\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DesktopVirtualizationAPIClient\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"6de28d6be58dd65ad8f25a9fa084676c54684f00f9938f5db7d0392282783e04\"\ - \n }\n ],\n \"dev-spaces\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/dev_spaces-1.0.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"dev_spaces-1.0.6-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.1.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 2\",\n \"Programming Language :: Python :: 2.7\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azds-azcli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dev-spaces\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dev-spaces\",\n \ - \ \"summary\": \"Dev Spaces provides a rapid, iterative Kubernetes development\ - \ experience for teams.\",\n \"version\": \"1.0.6\"\n \ - \ },\n \"sha256Digest\": \"71041808b27cd9d33fd905c5080c97f61291816f2dddd6dcdb2e66b9fb6ebf59\"\ - \n }\n ],\n \"devcenter\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"devcenter-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"devcenter\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DevCenter Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"418eb5c05e8f6597adf253c580e501e6bde925260603f5283680212c5063e549\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"devcenter-0.1.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"tm-azurefidalgo@microsoft.com\"\ - ,\n \"name\": \"DevCenter\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"devcenter\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DevCenter Extension\"\ - ,\n \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"e220902d40257c4124654b0026eb682fe4c51f0dff6e406539359b9adc4be43b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-0.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"devcenter-0.1.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"tm-azurefidalgo@microsoft.com\"\ - ,\n \"name\": \"DevCenter\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"devcenter\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DevCenter Extension\"\ - ,\n \"version\": \"0.1.2\"\n },\n \ - \ \"sha256Digest\": \"7957288ab151cca2945f0c26f76c5aab25df4d410342e056c34c5e41f9aec1e1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-1.0.0-py3-none-any.whl\"\ - ,\n \"filename\": \"devcenter-1.0.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.48.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"tm-azurefidalgo@microsoft.com\",\n \ - \ \"name\": \"DevCenter\",\n \"role\":\ - \ \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"devcenter\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DevCenter Extension\"\ - ,\n \"version\": \"1.0.0\"\n },\n \ - \ \"sha256Digest\": \"6072ff771ea62c74363883aa35ca2b744a37c87365ee0fa3946cb28213a3b59a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-1.0.1-py3-none-any.whl\"\ - ,\n \"filename\": \"devcenter-1.0.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.48.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"tm-azurefidalgo@microsoft.com\",\n \ - \ \"name\": \"DevCenter\",\n \"role\":\ - \ \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"devcenter\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DevCenter Extension\"\ - ,\n \"version\": \"1.0.1\"\n },\n \ - \ \"sha256Digest\": \"5306e7a8f24a2fcaaeb58753f40fe31bd55a0c7cdc00e0b7f9cf2bf9006deaed\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-1.0.2-py3-none-any.whl\"\ - ,\n \"filename\": \"devcenter-1.0.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.48.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"tm-azurefidalgo@microsoft.com\",\n \ - \ \"name\": \"DevCenter\",\n \"role\":\ - \ \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"devcenter\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DevCenter Extension\"\ - ,\n \"version\": \"1.0.2\"\n },\n \ - \ \"sha256Digest\": \"f4b9f94aa0f7548fe6f44027ea02f6a0f7d0e46c051b2eb4e0afee7fce16e68c\"\ - \n }\n ],\n \"diskpool\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/diskpool-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"diskpool-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/diskpool\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"diskpool\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools StoragePoolManagement\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"2afc595664b0fc616e62f8de28cebbca72d8f27dff02a8ed8cfff58dd62d571f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/diskpool-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"diskpool-0.1.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/diskpool\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"diskpool\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools StoragePoolManagement\ - \ Extension\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"d65e6f09c39461b78f052eec22eaf239b1d988aa63f3927470b74d28d0b2f95b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/diskpool-0.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"diskpool-0.1.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/diskpool\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"diskpool\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools StoragePoolManagement\ - \ Extension\",\n \"version\": \"0.1.2\"\n \ - \ },\n \"sha256Digest\": \"3ffe1291c8c7132a9caf77e66105027ae8a980c92ad757b0195c3f51090c3e6a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/diskpool-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"diskpool-0.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/diskpool\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"diskpool\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools StoragePoolManagement\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"9ae6aaea85a17529da2a4e51c2ba2aba55b4b26816d5618eafd0f9fdc43b67b7\"\ - \n }\n ],\n \"dms-preview\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliorcas.blob.core.windows.net/azclipath/dms_preview-0.11.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"dms_preview-0.11.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.43\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"arpavlic@microsoft.com\",\n \ - \ \"name\": \"Artyom Pavlichenko\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dms-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dms-preview\",\n \ - \ \"summary\": \"Support for new Database Migration Service scenarios.\"\ - ,\n \"version\": \"0.11.0\"\n },\n \ - \ \"sha256Digest\": \"ef19e5c19976506a8f8910ec04bc785ebeffb5a4c8764047e4e4d42f812b0845\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/dms_preview-0.12.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"dms_preview-0.12.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.43\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"arpavlic@microsoft.com\",\n \ - \ \"name\": \"Artyom Pavlichenko\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dms-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dms-preview\",\n \ - \ \"summary\": \"Support for new Database Migration Service scenarios.\"\ - ,\n \"version\": \"0.12.0\"\n },\n \ - \ \"sha256Digest\": \"5e2fd9a8e413fd13a280fbba9964658a5569af2e49e802bd12116ec01e5dd0ae\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dms_preview-0.13.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"dms_preview-0.13.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.43\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"arpavlic@microsoft.com\",\n \ - \ \"name\": \"Artyom Pavlichenko\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dms-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dms-preview\",\n \ - \ \"summary\": \"Support for new Database Migration Service scenarios.\"\ - ,\n \"version\": \"0.13.0\"\n },\n \ - \ \"sha256Digest\": \"c7d127332825d5f93c83ecfb3c46e9415e3cb0e4cee2c953287918b02757bc0c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dms_preview-0.14.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"dms_preview-0.14.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.43\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"arpavlic@microsoft.com\",\n \ - \ \"name\": \"Artyom Pavlichenko\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dms-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dms-preview\",\n \ - \ \"summary\": \"Support for new Database Migration Service scenarios.\"\ - ,\n \"version\": \"0.14.0\"\n },\n \ - \ \"sha256Digest\": \"77680dfecb50e2a017314ff2b5f2e0340fec73f225b41f5668abc561aed088cd\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dms_preview-0.15.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"dms_preview-0.15.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"arpavlic@microsoft.com\",\n \ - \ \"name\": \"Artyom Pavlichenko\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dms-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dms-preview\",\n \ - \ \"summary\": \"Support for new Database Migration Service scenarios.\"\ - ,\n \"version\": \"0.15.0\"\n },\n \ - \ \"sha256Digest\": \"556c145c03b8d529d8e77f7b35702fb8de382891635e858f928117f33688ee9c\"\ - \n }\n ],\n \"dnc\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dnc-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"dnc-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dnc\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dnc\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools DNC Extension\",\n \ - \ \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"5398ed171b49fe0d27307caec0f6bf2f6310da0b877b5f3b6d8a0fd6e7f50cbe\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dnc-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"dnc-0.1.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dnc\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dnc\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools DNC Extension\",\n \ - \ \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"7d34527aec383a227d1183eea2ecb9d9aaa0642acf9ef206c2f3e6aab72d86b3\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dnc-0.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"dnc-0.1.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dnc\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dnc\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools DNC Extension\",\n \ - \ \"version\": \"0.1.2\"\n },\n \ - \ \"sha256Digest\": \"fa59bf6e597c17a93f3b8c4390f34629b86c8301c74974e5168d99d8dc464892\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dnc-0.1.3-py3-none-any.whl\"\ - ,\n \"filename\": \"dnc-0.1.3-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dnc\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dnc\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools DNC Extension\",\n \ - \ \"version\": \"0.1.3\"\n },\n \ - \ \"sha256Digest\": \"237f362908d8deda9f797fb619226cb5a33c3e1c8740e37b3b24db53ddb76c74\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dnc-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"dnc-0.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.49.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dnc\"\n \ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n \ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dnc\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Dnc Extension.\",\n \ - \ \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"3c58a81f60b49ab7fc0cbe4950cef1ec847788aaa2c2d24cf345ee11b9f0d450\"\ - \n }\n ],\n \"dns-resolver\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dns_resolver-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"dns_resolver-0.1.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dns-resolver\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dns-resolver\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DnsResolverManagementClient\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"4537129127c2e4efc69909c5769753d3f8213d5e3eef9c4d42282d4e011905d8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dns_resolver-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"dns_resolver-0.2.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.39.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dns-resolver\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dns-resolver\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools DnsResolverManagementClient\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"1c4bb8216e509c2f08fa75c45930ec377768326f30cb9ab125842aa9352c6e2e\"\ - \n }\n ],\n \"dynatrace\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dynatrace-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"dynatrace-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dynatrace\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"dynatrace\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Dynatrace Extension.\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"112a7e423461d1b6f7c385fe8b73b4f2b850e2570c35a54a4bbcc2e87afec661\"\ - \n }\n ],\n \"edgeorder\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/edgeorder-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"edgeorder-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/edgeorder\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"edgeorder\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools EdgeOrderManagementClient\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"186a06d0f8603f7e0faeed5296ecc73bf1096e0d681acea42d5ebccc1670357b\"\ - \n }\n ],\n \"elastic\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/elastic-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"elastic-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/elastic\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"elastic\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools MicrosoftElastic Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"bcc9f3d37aa7a73a57899873c1f4ed3baa7d5d80e98f8ac74cdbc993ea939215\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/elastic-1.0.0b1-py3-none-any.whl\"\ - ,\n \"filename\": \"elastic-1.0.0b1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/elastic\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"elastic\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools MicrosoftElastic Extension\"\ - ,\n \"version\": \"1.0.0b1\"\n },\n \ - \ \"sha256Digest\": \"7e3bac2488c82cfc6a0809643be222cb4d765b65ddef760b04e1bfef6bf653b6\"\ - \n }\n ],\n \"elastic-san\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/elastic_san-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"elastic_san-0.1.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.40.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/elastic-san\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"elastic-san\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools ElasticSan Extension.\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"eda91cb50484637810d1aa9177affbe4bb2008ef1072497414ddcc4cde558fdf\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/elastic_san-1.0.0b1-py3-none-any.whl\"\ - ,\n \"filename\": \"elastic_san-1.0.0b1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.50.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/elastic-san\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"elastic-san\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools ElasticSan Extension.\"\ - ,\n \"version\": \"1.0.0b1\"\n },\n \ - \ \"sha256Digest\": \"61e661066fdbcab54335f028748a81b6dd45d48a41c86ab99cbf69386181eb08\"\ - \n }\n ],\n \"eventgrid\": [\n {\n \ - \ \"downloadUrl\": \"https://eventgridcliextension.blob.core.windows.net/cli/eventgrid-0.4.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"eventgrid-0.4.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ahamad@microsoft.com\",\n \ - \ \"name\": \"Ashraf Hamad.\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"eventgrid\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools EventGrid Command\ - \ Module.\",\n \"version\": \"0.4.4\"\n \ - \ },\n \"sha256Digest\": \"c91ac92ab27a7127c9def51e096f749986b57acf209b357eaf1494d3dbfb33f9\"\ - \n },\n {\n \"downloadUrl\": \"https://eventgridcliextension.blob.core.windows.net/cli/eventgrid-0.4.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"eventgrid-0.4.6-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"rgrandhi@microsoft.com\",\n \ - \ \"name\": \"Ramesh Grandhi.\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"eventgrid\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools EventGrid Command\ - \ Module.\",\n \"version\": \"0.4.6\"\n \ - \ },\n \"sha256Digest\": \"6ef9f9cf895b5dcdf9a38c2490a0c81e8254de4302dc7139fb6a4fcf2203318d\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/eventgrid-0.4.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"eventgrid-0.4.7-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ahamad@microsoft.com\",\n \ - \ \"name\": \"Ashraf Hamad.\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"eventgrid\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools EventGrid Command\ - \ Module.\",\n \"version\": \"0.4.7\"\n \ - \ },\n \"sha256Digest\": \"f1bff60574d25ccc04eb2038081771b626651d144d9ab01be2b7410e1b02f56a\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/eventgrid-0.4.8-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"eventgrid-0.4.8-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ahamad@microsoft.com\",\n \ - \ \"name\": \"Ashraf Hamad.\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"eventgrid\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools EventGrid Command\ - \ Module.\",\n \"version\": \"0.4.8\"\n \ - \ },\n \"sha256Digest\": \"8f307569c920e1b75d4b6dfb47ad80c0cd49bf54a3a65139b57edff8a4776d45\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/eventgrid-0.4.9-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"eventgrid-0.4.9-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"ahamad@microsoft.com\",\n \ - \ \"name\": \"Ashraf Hamad.\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"eventgrid\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools EventGrid Command\ - \ Module.\",\n \"version\": \"0.4.9\"\n \ - \ },\n \"sha256Digest\": \"1682f61dbb8350611dfeb1f2486158732264eeb35e22af8d7daf39839a720839\"\ - \n }\n ],\n \"express-route-cross-connection\": [\n\ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/express_route_cross_connection-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"express_route_cross_connection-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.41\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 2\",\n \"Programming Language :: Python :: 2.7\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/express-route-cross-connection\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"express-route-cross-connection\"\ - ,\n \"summary\": \"Manage customer ExpressRoute circuits\ - \ using an ExpressRoute cross-connection.\",\n \"version\"\ - : \"0.1.1\"\n },\n \"sha256Digest\": \"b83f723baae0ea04557a87f358fa2131baf15d45cd3aba7a9ab42d14ec80df38\"\ - \n }\n ],\n \"fleet\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"fleet-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"fleet\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Fleet Extension\",\n \ - \ \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"d3f3a3ac441de4c52684ad3afb55fa7008d2796b226139be11fb73f314ef2207\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"fleet-0.1.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.39.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"fleet\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Fleet Extension\",\n \ - \ \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"b885481b31de89103b7ceb94770bdbb561f9ad086574ba68b09bd53e5f9e08ed\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"fleet-0.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.39.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"fleet\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Fleet Extension\",\n \ - \ \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"bbcad15099156a964fcfe102670b7b75531da74de29b960518b868ab78d4f45f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-0.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"fleet-0.2.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.39.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"fleet\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Fleet Extension\",\n \ - \ \"version\": \"0.2.1\"\n },\n \ - \ \"sha256Digest\": \"880d6a3596534a1f06c7d98d8e14030f43d5e6194430705b9261d31262f01f73\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-0.2.2-py3-none-any.whl\"\ - ,\n \"filename\": \"fleet-0.2.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.48.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"fleet\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Fleet Extension\",\n \ - \ \"version\": \"0.2.2\"\n },\n \ - \ \"sha256Digest\": \"7f52b16d4e2d2b8e97be00fa20b1c1756d439c771de294664e0ff4efefdd5c27\"\ - \n }\n ],\n \"fluid-relay\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fluid_relay-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"fluid_relay-0.1.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.39.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fluid-relay\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"fluid-relay\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools FluidRelay Extension.\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"9217666f8134a38e09aeda905e7cc83994332a5ab563ec8935b9ff6c91563e8c\"\ - \n }\n ],\n \"footprint\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/footprint-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"footprint-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/footprint\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"footprint\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools FootprintMonitoringManagementClient\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"69b0e9a19682f12c67af509071177e442349e1e2ae2f07f1e15d5a3f4136aa95\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/footprint-1.0.0-py3-none-any.whl\"\ - ,\n \"filename\": \"footprint-1.0.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/footprint\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"footprint\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools FootprintMonitoringManagementClient\ - \ Extension\",\n \"version\": \"1.0.0\"\n \ - \ },\n \"sha256Digest\": \"4aa59288bf46cfd68519f1f7f63d3e33af16d80632b84c283cc7152129260b2c\"\ - \n }\n ],\n \"front-door\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliafd.blob.core.windows.net/azure-cli-extension/front_door-1.0.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"front_door-1.0.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.68\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 2\",\n \"Programming Language :: Python :: 2.7\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"front-door\",\n \ - \ \"summary\": \"Manage networking Front Doors.\",\n \ - \ \"version\": \"1.0.2\"\n },\n \"sha256Digest\"\ - : \"a009045bab5dec0dfcd9715e2993ed0fa7a59b4bc6633d388415f482ed9cbc46\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"front_door-1.0.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.68\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 2\",\n \"Programming Language :: Python :: 2.7\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"front-door\",\n \ - \ \"summary\": \"Manage networking Front Doors.\",\n \ - \ \"version\": \"1.0.3\"\n },\n \"sha256Digest\"\ - : \"e483de77921937c210e03ed32e161d0384f162c8b253bd03fe8da1927b4160d7\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"front_door-1.0.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.68\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 2\",\n \"Programming Language :: Python :: 2.7\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"front-door\",\n \ - \ \"summary\": \"Manage networking Front Doors.\",\n \ - \ \"version\": \"1.0.4\"\n },\n \"sha256Digest\"\ - : \"49f509e8b56f4a1ef1870bac7273376df5e7fbfe1c25e10cf236e9448d66683c\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.5-py3-none-any.whl\"\ - ,\n \"filename\": \"front_door-1.0.5-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.68\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"front-door\",\n \ - \ \"summary\": \"Manage networking Front Doors.\",\n \ - \ \"version\": \"1.0.5\"\n },\n \"sha256Digest\"\ - : \"cd55a87740de19cbd66444bdb398fd4a64115aeff92d52d2704a19ea2f083c60\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.6-py3-none-any.whl\"\ - ,\n \"filename\": \"front_door-1.0.6-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.68\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"front-door\",\n \ - \ \"summary\": \"Manage networking Front Doors.\",\n \ - \ \"version\": \"1.0.6\"\n },\n \"sha256Digest\"\ - : \"fbf965d7146884a87f481138dc06153dc95fd486f9dfeb40c1f11ce4667e203e\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.7-py3-none-any.whl\"\ - ,\n \"filename\": \"front_door-1.0.7-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.68\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"front-door\",\n \ - \ \"summary\": \"Manage networking Front Doors.\",\n \ - \ \"version\": \"1.0.7\"\n },\n \"sha256Digest\"\ - : \"9a97ac67c089d1e3a753fa55fa80e44b8f8a89bcae42442c19e34b035ae96231\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.8-py3-none-any.whl\"\ - ,\n \"filename\": \"front_door-1.0.8-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.68\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"front-door\",\n \ - \ \"summary\": \"Manage networking Front Doors.\",\n \ - \ \"version\": \"1.0.8\"\n },\n \"sha256Digest\"\ - : \"ccc7b5eba917945af589fed41dd6435eb1fe96385ae0a80c1b3bbb4db03b77a5\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.9-py3-none-any.whl\"\ - ,\n \"filename\": \"front_door-1.0.9-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.68\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"front-door\",\n \ - \ \"summary\": \"Manage networking Front Doors.\",\n \ - \ \"version\": \"1.0.9\"\n },\n \"sha256Digest\"\ - : \"064aa0c647e0dd320fd1eba50257387fd27e125838a2cf5b58121cc1c5eefc45\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.11-py3-none-any.whl\"\ - ,\n \"filename\": \"front_door-1.0.11-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.68\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"front-door\",\n \ - \ \"summary\": \"Manage networking Front Doors.\",\n \ - \ \"version\": \"1.0.11\"\n },\n \"sha256Digest\"\ - : \"7f9ea186e512e6a81f3199a18cd19b5065cf9f17faedacd2936e24350ee7be14\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.12-py3-none-any.whl\"\ - ,\n \"filename\": \"front_door-1.0.12-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.68\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"front-door\",\n \ - \ \"summary\": \"Manage networking Front Doors.\",\n \ - \ \"version\": \"1.0.12\"\n },\n \"sha256Digest\"\ - : \"89e7bbdb13a1afbccd285e9ae8868176cb990632eb85ce1202f23eb5b32f5e80\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.13-py3-none-any.whl\"\ - ,\n \"filename\": \"front_door-1.0.13-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.68\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"front-door\",\n \ - \ \"summary\": \"Manage networking Front Doors.\",\n \ - \ \"version\": \"1.0.13\"\n },\n \"sha256Digest\"\ - : \"cc22cdd23bae7f03121c04910a02536bba7e685183fb747499d4d355135bb57c\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.14-py3-none-any.whl\"\ - ,\n \"filename\": \"front_door-1.0.14-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.68\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"front-door\",\n \ - \ \"summary\": \"Manage networking Front Doors.\",\n \ - \ \"version\": \"1.0.14\"\n },\n \"sha256Digest\"\ - : \"bca02f32e3a322de8cf29be1a2c255897ede3a34ee620dcc1871f1dbb6019ff1\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.15-py3-none-any.whl\"\ - ,\n \"filename\": \"front_door-1.0.15-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.68\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"front-door\",\n \ - \ \"summary\": \"Manage networking Front Doors.\",\n \ - \ \"version\": \"1.0.15\"\n },\n \"sha256Digest\"\ - : \"8673a26f16f0d5b96f217d69f1f2c7588105c56c7e5e53c9a1f6f36b7d9edcff\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.16-py3-none-any.whl\"\ - ,\n \"filename\": \"front_door-1.0.16-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.68\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"front-door\",\n \ - \ \"summary\": \"Manage networking Front Doors.\",\n \ - \ \"version\": \"1.0.16\"\n },\n \"sha256Digest\"\ - : \"49727e1a4e61e74763c3905e4b9b5cfee8baa3ef4be628ccb6cf7e6a8d08ce1b\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.17-py3-none-any.whl\"\ - ,\n \"filename\": \"front_door-1.0.17-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.68\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/front-door\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"front-door\",\n \ - \ \"summary\": \"Manage networking Front Doors.\",\n \ - \ \"version\": \"1.0.17\"\n },\n \"sha256Digest\"\ - : \"20996a4d864963451572b71fecf4906f3e7fe8f403a651a1d1e98363df63d095\"\n \ - \ }\n ],\n \"functionapp\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/functionapp-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"functionapp-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"grzuber@microsoft.com\"\ - ,\n \"name\": \"Graham Zuber\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/functionapp\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"functionapp\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-functions-devops-build (~=0.0.22)\"\n \ - \ ]\n }\n \ - \ ],\n \"summary\": \"Additional commands for Azure\ - \ Functions.\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"0de3812d31b3581a333e64e32807cae7ca734a6d369180bfe21b91ee3ea105ed\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/functionapp-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"functionapp-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"grzuber@microsoft.com\"\ - ,\n \"name\": \"Graham Zuber\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/functionapp\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"functionapp\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-functions-devops-build (~=0.0.22)\"\n \ - \ ]\n }\n \ - \ ],\n \"summary\": \"Additional commands for Azure\ - \ Functions.\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"9b49a2bf31e2183a122e9a8b83c782e3f7b5d1db5a5df9037219b52dec8aedaf\"\ - \n }\n ],\n \"fzf\": [\n {\n \ - \ \"downloadUrl\": \"https://pahealyfzf.blob.core.windows.net/fzf/fzf-1.0.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"fzf-1.0.2-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.isPreview\": false,\n \ - \ \"azext.maxCliCoreVersion\": \"2.99.0\",\n \"azext.minCliCoreVersion\"\ - : \"2.9.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"patrick.healy@microsoft.com\",\n \ - \ \"name\": \"Patrick W. Healy\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/phealy/azure-cli-fzf\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"fzf\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools fzf Extension\",\n \ - \ \"version\": \"1.0.2\"\n },\n \ - \ \"sha256Digest\": \"84abeed03b4bbfa7b8c0be08d9366ff3040e2160df4f5a539f0e1c9e0a1c359c\"\ - \n }\n ],\n \"graphservices\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/graphservices-1.0.0b1-py3-none-any.whl\"\ - ,\n \"filename\": \"graphservices-1.0.0b1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/graphservices\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"graphservices\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Graphservices\ - \ Extension.\",\n \"version\": \"1.0.0b1\"\n \ - \ },\n \"sha256Digest\": \"8aeda3901e944b038f4e812b0b7099798d2bd82d55e03e785017a504c14583e5\"\ - \n }\n ],\n \"guestconfig\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/guestconfig-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"guestconfig-0.1.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/guestconfig\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"guestconfig\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools GuestConfigurationClient\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"0cf21ef88d49458157dae77e5bb25dfdfff8c12e76d15a19d468b408f4ab61c5\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/guestconfig-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"guestconfig-0.1.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/guestconfig\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"guestconfig\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools GuestConfigurationClient\ - \ Extension\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"94836a5d21ee1071cd40b163d2c80c32a6a81b9dc85d91371f7e4fb35141e273\"\ - \n }\n ],\n \"hack\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/hack-0.4.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"hack-0.4.3-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"Programming Language\ - \ :: Python :: 3.8\",\n \"Programming Language :: Python\ - \ :: 3.9\",\n \"License :: OSI Approved :: MIT License\"\ - \n ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"chrhar@microsoft.com\",\n \ - \ \"name\": \"Christopher Harrison\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n\ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/hack\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"hack\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Hack Extension\",\n \ - \ \"version\": \"0.4.3\"\n },\n \ - \ \"sha256Digest\": \"f9e600457e3a9fffc3235a7b30176d9f0a7f4d39ac01ea3e2668bcbdee6398a6\"\ - \n }\n ],\n \"hardware-security-modules\": [\n \ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/hardware_security_modules-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"hardware_security_modules-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"hardware-security-modules\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureDedicatedHSMResourceProvider\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"dafa526a4bce243940432e91f6f28d2254bdcc1a90eaa0f097493f9d79a23b36\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/hardware_security_modules-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"hardware_security_modules-0.2.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/hardware-security-modules\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"hardware-security-modules\",\n\ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureDedicatedHSMResourceProvider\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"ac4a10e2cc64a4d0818e48ffbcddfeb4307dd56b8875bc01c02687d473c9fe9b\"\ - \n }\n ],\n \"healthbot\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/healthbot-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"healthbot-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthbot\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"healthbot\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools HealthbotClient Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"9134fad2511516e714a5db346d63865af0badf0599ade3f1c15faca0055585a3\"\ - \n }\n ],\n \"healthcareapis\": [\n {\n\ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"healthcareapis-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.67\",\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"healthcareapis\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools HealthCareApis\ - \ Extension\",\n \"version\": \"0.1.3\"\n \ - \ },\n \"sha256Digest\": \"2bc0f7c9642cb0afe682218761205d2b7ffe842a397fd679ad462506f2846ce0\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"healthcareapis-0.2.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"healthcareapis\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools HealthcareApisManagementClient\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"460655a4287a7e4ecf69fac32c95628df9ce776a802f061a81f54f7d89aca0ba\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"healthcareapis-0.3.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.11.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthcareapis\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"healthcareapis\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools HealthcareApisManagementClient\ - \ Extension\",\n \"version\": \"0.3.0\"\n \ - \ },\n \"sha256Digest\": \"6dcb79765e87026db4f6e09f4a85e9d6a523fb9928a5586c3cb5e16cc1e1f3be\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.3.1-py3-none-any.whl\"\ - ,\n \"filename\": \"healthcareapis-0.3.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.11.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthcareapis\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"healthcareapis\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools HealthcareApisManagementClient\ - \ Extension\",\n \"version\": \"0.3.1\"\n \ - \ },\n \"sha256Digest\": \"c1804f41528fdfb2ccc355a3a7e28c961fb1a783c767d855b886db0483897e33\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.3.2-py3-none-any.whl\"\ - ,\n \"filename\": \"healthcareapis-0.3.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.11.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthcareapis\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"healthcareapis\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools HealthcareApisManagementClient\ - \ Extension\",\n \"version\": \"0.3.2\"\n \ - \ },\n \"sha256Digest\": \"950fcd15946023adb8e2d7f7eb7d8a856ccf497f0ec2265225ece0df3663c285\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.3.3-py3-none-any.whl\"\ - ,\n \"filename\": \"healthcareapis-0.3.3-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.11.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthcareapis\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"healthcareapis\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools HealthcareApisManagementClient\ - \ Extension\",\n \"version\": \"0.3.3\"\n \ - \ },\n \"sha256Digest\": \"0a19a8d24aa9676a6ed141c7199696af6d784662f68d576c423707a82d4ff2d2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.3.4-py3-none-any.whl\"\ - ,\n \"filename\": \"healthcareapis-0.3.4-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.11.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthcareapis\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"healthcareapis\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools HealthcareApisManagementClient\ - \ Extension\",\n \"version\": \"0.3.4\"\n \ - \ },\n \"sha256Digest\": \"d19fd5392f54db314a0be4db52dc2092d0cd802c7353e6c40cccfd31958fa320\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.4.0-py3-none-any.whl\"\ - ,\n \"filename\": \"healthcareapis-0.4.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/healthcareapis\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"healthcareapis\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools HealthcareApisManagementClient\ - \ Extension\",\n \"version\": \"0.4.0\"\n \ - \ },\n \"sha256Digest\": \"a25d7d57d4fd3adcc37581d0acc1d6c6a46dcd0351933ed37cfba9d1abd60978\"\ - \n }\n ],\n \"hpc-cache\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"hpc_cache-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.isPreview\": true,\n \ - \ \"azext.minCliCoreVersion\": \"2.3.0\",\n \"classifiers\"\ - : [\n \"Development Status :: 4 - Beta\",\n \ - \ \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \"Programming\ - \ Language :: Python :: 3\",\n \"Programming Language\ - \ :: Python :: 3.4\",\n \"Programming Language :: Python\ - \ :: 3.5\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\":\ - \ {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"hpc-cache\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools StorageCache Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"0961683cd21f09622399f54b62389fc5d529f861c2280c4751ae977c83da9ae0\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"hpc_cache-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.isPreview\": true,\n \ - \ \"azext.minCliCoreVersion\": \"2.3.0\",\n \"classifiers\"\ - : [\n \"Development Status :: 4 - Beta\",\n \ - \ \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \"Programming\ - \ Language :: Python :: 3\",\n \"Programming Language\ - \ :: Python :: 3.4\",\n \"Programming Language :: Python\ - \ :: 3.5\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\":\ - \ {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"hpc-cache\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools StorageCache Extension\"\ - ,\n \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"16f3648054ccadb1d8e3110ac7febd238f1583b1c559cd19395096e9b7588be4\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"hpc_cache-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.isPreview\": true,\n \ - \ \"azext.minCliCoreVersion\": \"2.3.0\",\n \"classifiers\"\ - : [\n \"Development Status :: 4 - Beta\",\n \ - \ \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \"Programming\ - \ Language :: Python :: 3\",\n \"Programming Language\ - \ :: Python :: 3.4\",\n \"Programming Language :: Python\ - \ :: 3.5\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\":\ - \ {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/hpc-cache\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"hpc-cache\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools StorageCache Extension\"\ - ,\n \"version\": \"0.1.2\"\n },\n \ - \ \"sha256Digest\": \"6ca5b80e7c705bca73ec1ecfc791d82721fa19d12e4449be4d27933901a9e471\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"hpc_cache-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.4\"\ - ,\n \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/hpc-cache\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"hpc-cache\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools StorageCache Extension\"\ - ,\n \"version\": \"0.1.3\"\n },\n \ - \ \"sha256Digest\": \"8c03e7450a4dc7eb28b271037053caec7530e430aef801d6e1223adc9228083e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"hpc_cache-0.1.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.4\"\ - ,\n \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/hpc-cache\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"hpc-cache\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools StorageCache Extension\"\ - ,\n \"version\": \"0.1.4\"\n },\n \ - \ \"sha256Digest\": \"2babc06382b75b3afa92d61a6e66a6d7f01878168e687ca62903c16bed782285\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"hpc_cache-0.1.5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.4\"\ - ,\n \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/hpc-cache\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"hpc-cache\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools StorageCache Extension\"\ - ,\n \"version\": \"0.1.5\"\n },\n \ - \ \"sha256Digest\": \"852cb417aadf0ad07e3c51413858c413bf71ea6cb49ba58289d9572f9a350507\"\ - \n }\n ],\n \"hybridaks\": [\n {\n \ - \ \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/hybridaks-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"hybridaks-0.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://dev.azure.com/msazure/msk8s/_git/hybridaks-utils\"\n \ - \ }\n }\n },\n\ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\"\ - : \"hybridaks\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"arcproxyutilities (==1.0.2)\",\n \ - \ \"kubernetes (==11.0.0)\",\n \"\ - pycryptodome (==3.12.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools HybridContainerService Extension\",\n \ - \ \"version\": \"0.2.0\"\n },\n \"\ - sha256Digest\": \"7f6b82638c7f6fe675d31f3df8fcc82f6ecb651d74c2f8b1bcd0c5fe5d3477fb\"\ - \n },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/hybridaks-0.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"hybridaks-0.2.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://dev.azure.com/msazure/msk8s/_git/hybridaks-utils\"\n \ - \ }\n }\n },\n\ - \ \"extras\": [],\n \"generator\": \"\ - bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\"\ - : \"hybridaks\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"arcproxyutilities (==1.0.2)\",\n \ - \ \"kubernetes (==11.0.0)\",\n \"\ - pycryptodome (==3.12.0)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools HybridContainerService Extension\",\n \ - \ \"version\": \"0.2.1\"\n },\n \"\ - sha256Digest\": \"d7998850327419509bcd099168c20be6c65c9d14c927ed8adcde315802a05ba3\"\ - \n }\n ],\n \"image-copy-extension\": [\n \ - \ {\n \"downloadUrl\": \"https://files.pythonhosted.org/packages/48/6f/7fa75dfa7c015c0b58f18473b4aa8d565be8606d9740d4442b32b17df913/image_copy_extension-0.2.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"image_copy_extension-0.2.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.24\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 2\",\n \"Programming Language :: Python :: 2.7\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"tamir.kamara@microsoft.com\"\ - ,\n \"name\": \"Tamir Kamara\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"image-copy-extension\",\n \ - \ \"summary\": \"Support for copying managed vm images between regions\"\ - ,\n \"version\": \"0.2.3\"\n },\n \ - \ \"sha256Digest\": \"8a88c2600f9dad5f38ca6128ab8efaa38a974fbb7fe8c875fc50b7bb7d37bd54\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"image_copy_extension-0.2.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.24\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"tamir.kamara@microsoft.com\",\n \ - \ \"name\": \"Tamir Kamara\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"image-copy-extension\",\n \ - \ \"summary\": \"Support for copying managed vm images between\ - \ regions\",\n \"version\": \"0.2.4\"\n \ - \ },\n \"sha256Digest\": \"174e2437b20a979257a93017209ba1ff5d1969ea1eca7f3cbe57e8d11c75f4f4\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"image_copy_extension-0.2.5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.24\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"tamir.kamara@microsoft.com\",\n \ - \ \"name\": \"Tamir Kamara\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"image-copy-extension\",\n \ - \ \"summary\": \"Support for copying managed vm images between\ - \ regions\",\n \"version\": \"0.2.5\"\n \ - \ },\n \"sha256Digest\": \"14216b9664365a03ccd6d2cb469a32ab1e38f1d1e9b2735d27725cdc5300b148\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"image_copy_extension-0.2.6-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.24\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"tamir.kamara@microsoft.com\",\n \ - \ \"name\": \"Tamir Kamara\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"image-copy-extension\",\n \ - \ \"summary\": \"Support for copying managed vm images between\ - \ regions\",\n \"version\": \"0.2.6\"\n \ - \ },\n \"sha256Digest\": \"69cc6fac34625677c94fb276dc97caca8769295db51dc480da4b194a0ec94720\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"image_copy_extension-0.2.7-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.24\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"tamir.kamara@microsoft.com\",\n \ - \ \"name\": \"Tamir Kamara\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"image-copy-extension\",\n \ - \ \"summary\": \"Support for copying managed vm images between\ - \ regions\",\n \"version\": \"0.2.7\"\n \ - \ },\n \"sha256Digest\": \"565cf4411a6b12d2940365a7d4d578422709a2c38f95a253e5f6e82ab9bd6bdd\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.8-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"image_copy_extension-0.2.8-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.24\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"tamir.kamara@microsoft.com\",\n \ - \ \"name\": \"Tamir Kamara\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/image-copy\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"image-copy-extension\",\n \ - \ \"summary\": \"Support for copying managed vm images between\ - \ regions\",\n \"version\": \"0.2.8\"\n \ - \ },\n \"sha256Digest\": \"b57f554b77e68d414b9f79016311a3e5c180f76206557909319edcad9ada5240\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.9-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"image_copy_extension-0.2.9-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.24\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"tamir.kamara@microsoft.com\",\n \ - \ \"name\": \"Tamir Kamara\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/image-copy\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"image-copy-extension\",\n \ - \ \"summary\": \"Support for copying managed vm images between\ - \ regions\",\n \"version\": \"0.2.9\"\n \ - \ },\n \"sha256Digest\": \"2ed4710d1e30aa0c21c5e5bbc92d971c0ef325f602ba36698f90663497f3cfbb\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.10-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"image_copy_extension-0.2.10-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.24\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"tamir.kamara@microsoft.com\",\n \ - \ \"name\": \"Tamir Kamara\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/image-copy\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"image-copy-extension\",\n \ - \ \"summary\": \"Support for copying managed vm images between\ - \ regions\",\n \"version\": \"0.2.10\"\n \ - \ },\n \"sha256Digest\": \"005ddd130d3f45d47d9dfed948a8c390e79df9b64043c26e52494987dda3969b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.11-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"image_copy_extension-0.2.11-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.24\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"tamir.kamara@microsoft.com\",\n \ - \ \"name\": \"Tamir Kamara\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/image-copy\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"image-copy-extension\",\n \ - \ \"summary\": \"Support for copying managed vm images between\ - \ regions\",\n \"version\": \"0.2.11\"\n \ - \ },\n \"sha256Digest\": \"3c4a93131c2e792ca79aab9382e7f70abff8c9c27b299071a27eb59ae9708993\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.12-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"image_copy_extension-0.2.12-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.24\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"tamir.kamara@microsoft.com\",\n \ - \ \"name\": \"Tamir Kamara\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/image-copy\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"image-copy-extension\",\n \ - \ \"summary\": \"Support for copying managed vm images between\ - \ regions\",\n \"version\": \"0.2.12\"\n \ - \ },\n \"sha256Digest\": \"d45db946ccca399f618ffd9f36bfa97147ee33490f5cb41bbd192060f2bb6dcd\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.13-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"image_copy_extension-0.2.13-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.24\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"tamir.kamara@microsoft.com\",\n \ - \ \"name\": \"Tamir Kamara\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/image-copy\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"image-copy-extension\",\n \ - \ \"summary\": \"Support for copying managed vm images between\ - \ regions\",\n \"version\": \"0.2.13\"\n \ - \ },\n \"sha256Digest\": \"b0d12bf3c74500790d58d99a6c32562548712cb872b7942e8ad481e270521b19\"\ - \n }\n ],\n \"image-gallery\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_gallery-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"image_gallery-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"image-gallery\",\n \"\ - summary\": \"Support for Azure Image Gallery\",\n \"version\"\ - : \"0.1.0\"\n },\n \"sha256Digest\": \"e7939c407eebea41a5c98d094f29428d40efcb8b73330e113304af35a3631971\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_gallery-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"image_gallery-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"image-gallery\",\n \"\ - summary\": \"Support for Azure Image Gallery\",\n \"version\"\ - : \"0.1.1\"\n },\n \"sha256Digest\": \"b2741a832f5955b53d2899eb332bb0a2df1462ec310ea1dee89e11ff041d1ac4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_gallery-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"image_gallery-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"image-gallery\",\n \"\ - summary\": \"Support for Azure Image Gallery\",\n \"version\"\ - : \"0.1.2\"\n },\n \"sha256Digest\": \"41dfa1cda5be37acd0c2236bd8febae31a117e99d2c267fb3a76f50b6ba0aa1c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_gallery-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"image_gallery-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/image-gallery\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"image-gallery\",\n \ - \ \"summary\": \"Support for Azure Image Gallery\",\n \ - \ \"version\": \"0.1.3\"\n },\n \"sha256Digest\"\ - : \"6260c1f4bfb589d2ba0569317358a149caabbbd49a048e69328e44871694aacd\"\n \ - \ }\n ],\n \"import-export\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/import_export-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"import_export-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"import-export\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools StorageImportExport Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"6a5a1a1a23c7ff90e01b1f0a33d04874d750845e6cda56badce4ce99a518ef55\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/import_export-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"import_export-0.1.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"import-export\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools StorageImportExport Extension\"\ - ,\n \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"0680948362e12138c9582e68e471533482749bd660bfe3c8c2a4d856e90927b0\"\ - \n }\n ],\n \"init\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/init-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"init-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/init\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"init\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Init Extension\",\n \ - \ \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"1177fc293dc118b449b761ec2c728d39755fc3939de8d4bfd89cce1bfb218e86\"\ - \n }\n ],\n \"interactive\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/interactive-0.4.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"interactive-0.4.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"2.0.61\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.50.dev0\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli\"\n }\n\ - \ }\n },\n \"\ - extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"interactive\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"prompt-toolkit\ - \ (~=1.0.15)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Microsoft Azure\ - \ Command-Line Interactive Shell\",\n \"version\": \"0.4.1\"\ - \n },\n \"sha256Digest\": \"22b940493972b77c62606b0ae3c834283209d8619bb740e69dd115530a328e3b\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/interactive-0.4.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"interactive-0.4.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli\"\n }\n\ - \ }\n },\n \"\ - extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"interactive\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"prompt-toolkit\ - \ (~=1.0.15)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Microsoft Azure\ - \ Command-Line Interactive Shell\",\n \"version\": \"0.4.3\"\ - \n },\n \"sha256Digest\": \"ba78a45ec9753a42e1e805dc9cf3b309df264c6201dfd1dabcc6c00b22599fe8\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/interactive-0.4.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"interactive-0.4.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli\"\n }\n\ - \ }\n },\n \"\ - extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"interactive\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"prompt-toolkit\ - \ (~=1.0.15)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Microsoft Azure\ - \ Command-Line Interactive Shell\",\n \"version\": \"0.4.4\"\ - \n },\n \"sha256Digest\": \"1e66bc1f117fac90f320c072a08f527b8570f5a6725670a1fb4d05f2c7eb7a31\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/interactive-0.4.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"interactive-0.4.5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli\"\n }\n\ - \ }\n },\n \"\ - extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"interactive\",\n \ - \ \"run_requires\": [\n {\n \ - \ \"requires\": [\n \"prompt-toolkit\ - \ (~=1.0.15)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Microsoft Azure\ - \ Command-Line Interactive Shell\",\n \"version\": \"0.4.5\"\ - \n },\n \"sha256Digest\": \"9dc4b78b10065603501f2ef7124847cbdac013fca6c00e2684b1d1f702ffcbc4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/interactive-0.4.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"interactive-0.4.6-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/interactive\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"interactive\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"prompt-toolkit (~=1.0.15)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Interactive Shell\"\ - ,\n \"version\": \"0.4.6\"\n },\n \ - \ \"sha256Digest\": \"0890ac49a0db5d781786b80777547d0388683f4eb4a58d9bb6680ac63871763c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/interactive-0.5.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"interactive-0.5.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/interactive\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"interactive\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"prompt-toolkit (~=1.0.15)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Interactive Shell\"\ - ,\n \"version\": \"0.5.0\"\n },\n \ - \ \"sha256Digest\": \"97f90de55c70452f8d3dfd83a6c3b018eb7a6d1dfaa5021b756cf4ca1633db91\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/interactive-0.5.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"interactive-0.5.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/interactive\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"interactive\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"prompt-toolkit (~=1.0.15)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Interactive Shell\"\ - ,\n \"version\": \"0.5.1\"\n },\n \ - \ \"sha256Digest\": \"1000a418cd2e1038a9fae0b342d848f2191cc17b9b23e6c9f27ba6f4e51e147c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/interactive-0.5.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"interactive-0.5.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/interactive\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"interactive\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"prompt-toolkit (~=1.0.15)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Interactive Shell\"\ - ,\n \"version\": \"0.5.2\"\n },\n \ - \ \"sha256Digest\": \"215a7daebb7f42a16b339445b8c60db07cac7dd368b421089c13472bc7b2c335\"\ - \n }\n ],\n \"internet-analyzer\": [\n \ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/internet_analyzer-0.1.0rc5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"internet_analyzer-0.1.0rc5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"internet-analyzer\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Internet Analyzer Extension\"\ - ,\n \"version\": \"0.1.0rc5\"\n },\n \ - \ \"sha256Digest\": \"7e5ee753abece69fb917f3a96be4a3d8117ffbbbd75d18c2e54c74c0fe2b952e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/internet_analyzer-0.1.0rc6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"internet_analyzer-0.1.0rc6-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/internet-analyzer\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"internet-analyzer\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Internet Analyzer\ - \ Extension\",\n \"version\": \"0.1.0rc6\"\n \ - \ },\n \"sha256Digest\": \"0708d9f598d1618d138eebcf18354d97c7b3a2c90570959df077e04d419d32c3\"\ - \n }\n ],\n \"ip-group\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ip_group-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"ip_group-0.1.1-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"extensions\": {\n\ - \ \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ip-group\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools IpGroup Extension\"\ - ,\n \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"477d7f58fe44a4ecb0ced3497262d7ccd8bb7677d70582b6fccf645e91d25ad4\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ip_group-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"ip_group-0.1.2-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"Programming Language :: Python\ - \ :: 3.7License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"ip-group\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools IpGroup Extension\",\n \ - \ \"version\": \"0.1.2\"\n },\n \"sha256Digest\"\ - : \"afba2d8a8a612863b63f504d6cff6d559610b961e4c77dc2fd49b9fe03ec67a2\"\n \ - \ }\n ],\n \"k8s-configuration\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.0.0-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_configuration-1.0.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"k8s-configuration\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"pycryptodome (~=3.9.8)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-configuration\ - \ Extension\",\n \"version\": \"1.0.0\"\n \ - \ },\n \"sha256Digest\": \"80b79b09d9caa8e1813dad25703c442aec35e01d60a3ea13389ebaec3e94933c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_configuration-1.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"k8s-configuration\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"pycryptodome (~=3.9.8)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-configuration\ - \ Extension\",\n \"version\": \"1.1.0\"\n \ - \ },\n \"sha256Digest\": \"2ca4d1e87dfa0614592b758d3441bfeaaa85e4d151b734ce27cc74c6a400edec\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_configuration-1.1.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"k8s-configuration\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"pycryptodome (~=3.9.8)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-configuration\ - \ Extension\",\n \"version\": \"1.1.1\"\n \ - \ },\n \"sha256Digest\": \"3edf6b977d911b4da52ed66ada9363a7a6a739773a26f3599a2fdc728adcce9c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_configuration-1.2.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"k8s-configuration\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"pycryptodome (~=3.9.8)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-configuration\ - \ Extension\",\n \"version\": \"1.2.0\"\n \ - \ },\n \"sha256Digest\": \"145c09df2e45ac41b6471fe74a513720014943151b5ca67e9913a1a91d591ac6\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_configuration-1.3.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"k8s-configuration\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"pycryptodome (~=3.9.8)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-configuration\ - \ Extension\",\n \"version\": \"1.3.0\"\n \ - \ },\n \"sha256Digest\": \"c403947012efe91407ffb3e8edaf3fc6775519b1930c36bb4a04c11c2a3de3ab\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.4.0-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_configuration-1.4.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"k8s-configuration\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"pycryptodome (~=3.9.8)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-configuration\ - \ Extension\",\n \"version\": \"1.4.0\"\n \ - \ },\n \"sha256Digest\": \"877af811d8ee5fb8f282faefd159b7c61cbc0de6410ef43d54872e217a68747f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.4.1-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_configuration-1.4.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"k8s-configuration\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"pycryptodome (~=3.9.8)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-configuration\ - \ Extension\",\n \"version\": \"1.4.1\"\n \ - \ },\n \"sha256Digest\": \"827006d9e0b453fbf318e09bdea7403f715f517796646476b4f621b5830597c0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.5.0-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_configuration-1.5.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-configuration\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"k8s-configuration\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"pycryptodome (~=3.9.8)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-configuration\ - \ Extension\",\n \"version\": \"1.5.0\"\n \ - \ },\n \"sha256Digest\": \"240ec430dc52af32a03450707a9734d29f7077c9961f7d1ebc871891f3f2d906\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.5.1-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_configuration-1.5.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \"\ - python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"azpycli@microsoft.com\",\n \"name\"\ - : \"Microsoft Corporation\",\n \"role\"\ - : \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-configuration\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"k8s-configuration\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"pycryptodome (~=3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-configuration\ - \ Extension\",\n \"version\": \"1.5.1\"\n \ - \ },\n \"sha256Digest\": \"bf697ea1cb07d7792ba8cbadb677797398b9a818ffad2c5b979eecb5d7740ea7\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.6.0-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_configuration-1.6.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \"\ - python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"azpycli@microsoft.com\",\n \"name\"\ - : \"Microsoft Corporation\",\n \"role\"\ - : \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-configuration\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"k8s-configuration\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"pycryptodome (~=3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-configuration\ - \ Extension\",\n \"version\": \"1.6.0\"\n \ - \ },\n \"sha256Digest\": \"9f1e8f692a3a7e53dfc356a5d65593f76485cad43a20098566fee910b13abca2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.7.0-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_configuration-1.7.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \"\ - python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"azpycli@microsoft.com\",\n \"name\"\ - : \"Microsoft Corporation\",\n \"role\"\ - : \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-configuration\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"k8s-configuration\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"pycryptodome (~=3.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-configuration\ - \ Extension\",\n \"version\": \"1.7.0\"\n \ - \ },\n \"sha256Digest\": \"66c3bda7d25cae39d1d5ab9076f8fa64fdc955910ada7a8032a1756ab1f549e4\"\ - \n }\n ],\n \"k8s-extension\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-0.2.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"k8s-extension\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools K8s-extension Extension\"\ - ,\n \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"fce51e9eccace013cbdac4a38c4bccf71a24aeed04cc6af68adb9bdb268a0787\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-0.2.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"k8s-extension\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools K8s-extension Extension\"\ - ,\n \"version\": \"0.2.1\"\n },\n \ - \ \"sha256Digest\": \"dcf1efff249be93fdf6a1504975294c1ada2c888f20d97bc51411aed4eb6ba1a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-0.3.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"k8s-extension\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools K8s-extension Extension\"\ - ,\n \"version\": \"0.3.0\"\n },\n \ - \ \"sha256Digest\": \"f8c2c922fa229a20d3ecf1ae1572bd6b73e6f7e52f0a13647d20a18abc257ed1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.3.1-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-0.3.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"k8s-extension\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools K8s-extension Extension\"\ - ,\n \"version\": \"0.3.1\"\n },\n \ - \ \"sha256Digest\": \"77e0dea5831e33ac88a6485deca56b233ce4e29c39e6fd1765b405b421b7b3b5\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.4.0-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-0.4.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"k8s-extension\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools K8s-extension Extension\"\ - ,\n \"version\": \"0.4.0\"\n },\n \ - \ \"sha256Digest\": \"5987336827718cc5a2aefbee33226cc66574b5767644f8fd48016883a2e9f997\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.4.1-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-0.4.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"k8s-extension\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools K8s-extension Extension\"\ - ,\n \"version\": \"0.4.1\"\n },\n \ - \ \"sha256Digest\": \"10d2318f7998c5bfee637141ab89581a974893a0f062d9dc55ae5c2cc9f9b4ab\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.4.2-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-0.4.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"k8s-extension\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools K8s-extension Extension\"\ - ,\n \"version\": \"0.4.2\"\n },\n \ - \ \"sha256Digest\": \"aabdf00aa0cabddb142ef829e487d1b33c716ad498a4eee29389fd889e1f30d1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.4.3-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-0.4.3-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"k8s-extension\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools K8s-extension Extension\"\ - ,\n \"version\": \"0.4.3\"\n },\n \ - \ \"sha256Digest\": \"67dc73f1e12d5e0084963a73c4a8f4e3adc06785f3ab51c5e0ee1f801fbca0d4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.5.0-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-0.5.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"k8s-extension\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"pyhelm\"\n ]\n }\n\ - \ ],\n \"summary\": \"Microsoft Azure\ - \ Command-Line Tools K8s-extension Extension\",\n \"version\"\ - : \"0.5.0\"\n },\n \"sha256Digest\": \"82bb4f809cc5b6fe6b998e78adf6ca3b5b50de02f998c180441d9d66e7cc4875\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.5.1-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-0.5.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"k8s-extension\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools K8s-extension Extension\"\ - ,\n \"version\": \"0.5.1\"\n },\n \ - \ \"sha256Digest\": \"b04378d1c1699cf8cf37fc84a0f77fd5b87c653cc4d06049ba546660ce57fe42\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.6.0-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-0.6.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"k8s-extension\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools K8s-extension Extension\"\ - ,\n \"version\": \"0.6.0\"\n },\n \ - \ \"sha256Digest\": \"a1b642402345b71cb0f06aa31653a3161ab3f5f874e29d59863b987200bc535d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.6.1-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-0.6.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"k8s-extension\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools K8s-extension Extension\"\ - ,\n \"version\": \"0.6.1\"\n },\n \ - \ \"sha256Digest\": \"42b366184ab6dd9f46bb44e7c0e10eace4f25f514f97dd1912552c6900f2fd9e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.7.0-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-0.7.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"k8s-extension\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools K8s-extension Extension\"\ - ,\n \"version\": \"0.7.0\"\n },\n \ - \ \"sha256Digest\": \"8721d18318523e58de9bec2630b713c1c860f910ee1f9d05f80dbc6fd178f9ca\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.7.1-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-0.7.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"k8s-extension\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools K8s-extension Extension\"\ - ,\n \"version\": \"0.7.1\"\n },\n \ - \ \"sha256Digest\": \"f1360a4c39efb470184c16d4b69273a46225bd86b9c4a463fcdd3ecbaddafc4e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.0.0-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.0.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.0.0\"\n \ - \ },\n \"sha256Digest\": \"039cd89acff0e63516a7235c2587f4e06a750b9f9d3e94a5399de21c17964cd0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.0.1-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.0.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.0.1\"\n \ - \ },\n \"sha256Digest\": \"6f6ecdffa02759bacd523a9804e2c7e9e96603f3de57c62ba609b3bdb6c2a3ad\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.0.2-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.0.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.0.2\"\n \ - \ },\n \"sha256Digest\": \"4e911e5b1c750700a0ac713fd3ec3cac97778ade4cb4d2cecf1342200f766851\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.0.3-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.0.3-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.0.3\"\n \ - \ },\n \"sha256Digest\": \"0a37d5c8c098a1624be18beef43c6ec5c472f237486e08ebf60245dd9e3c5286\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.0.4-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.0.4-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.0.4\"\n \ - \ },\n \"sha256Digest\": \"248b883ec7518f5db53de32d6516d358062d4703b5d958a34b2c723eb3a5b8f4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.1.0\"\n \ - \ },\n \"sha256Digest\": \"c5b48df58d454f3d154711b1184af5737455dbc7af8deaacef884be307026cbd\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.2.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.2.0\"\n \ - \ },\n \"sha256Digest\": \"bf92e1df8eee418aa7be48466b6d6138e930b25287fa1f9fe1d7334173d63e69\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.2.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.2.1\"\n \ - \ },\n \"sha256Digest\": \"e65628ffceba2a4f26ba024bf1e46599731cda5286f234e81a1259f027f75df4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.2.2-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.2.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.2.2\"\n \ - \ },\n \"sha256Digest\": \"d214fe2383a30fc1cb8476c38a525ccf1aada2eb613503074e99dbda1dafc79c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.2.3-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.2.3-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.2.3\"\n \ - \ },\n \"sha256Digest\": \"c012f662fd51ea183674efb16bb794c40338f948f84444c983fb78140b63a461\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.2.4-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.2.4-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.2.4\"\n \ - \ },\n \"sha256Digest\": \"0ca9dcc073a16fff7b536ad8de737caf6a06a1fcb33fa1b538327c2b488ec978\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.2.5-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.2.5-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.2.5\"\n \ - \ },\n \"sha256Digest\": \"ee4af7d478a28482012cd83376e4145354d1930844f08b14bb1f9f4a7e9e2832\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.2.6-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.2.6-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.2.6\"\n \ - \ },\n \"sha256Digest\": \"35ebc35a808c52780526feb012ccbe4915d67c4f8d3ddfd7a62da0710c507c68\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.3.1-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.3.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.3.1\"\n \ - \ },\n \"sha256Digest\": \"c6231d4bf4f05b5e9f169ddc8dd278113b4c8dcedb3506684641f09d1dfb36ce\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.3.2-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.3.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.3.2\"\n \ - \ },\n \"sha256Digest\": \"f081a5501ade1d6aa9eb62b3fb58de78adb614031c6bbd48b1d8c2af0af1197a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.3.3-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.3.3-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.3.3\"\n \ - \ },\n \"sha256Digest\": \"f8f0a6519fc42829e8cb0d32b28e2f462306e23ac810fa1651165f457b357ccb\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.3.4-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.3.4-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.3.4\"\n \ - \ },\n \"sha256Digest\": \"db83a5d0d23c2ce3d2059070ec576014d55548fe56e8afe4aaa0ee51eff5369f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.3.5-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.3.5-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.3.5\"\n \ - \ },\n \"sha256Digest\": \"14e1f4d18aad44ec13b823431e7b916751345e45e1dd2d88c78f059794c953f9\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.3.6-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.3.6-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.3.6\"\n \ - \ },\n \"sha256Digest\": \"0f576d0c27d25d092dfc6cc1aa2c5400e7249d732ae102fdee3feb92a9e80b6c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.3.7-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.3.7-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.3.7\"\n \ - \ },\n \"sha256Digest\": \"6b13d83f0ce086c56d68c26f6611785794e384423d40a6c636a606258e6adc32\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.3.8-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.3.8-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.3.8\"\n \ - \ },\n \"sha256Digest\": \"83c256f2d0fe27de40ac1ccb1f45e714cd32d38f209df8f71556c7ce712eb61c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.3.9-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.3.9-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.3.9\"\n \ - \ },\n \"sha256Digest\": \"076beb20efe4840f8d62f2ecdc227eb67ee396a55a5788210ad6402cf1a6e9c4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.4.0-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.4.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.4.0\"\n \ - \ },\n \"sha256Digest\": \"2c2884897cba23c860c1a06a6db9004fc320c9636996fd207f0565797df6b06d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.4.1-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.4.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.4.1\"\n \ - \ },\n \"sha256Digest\": \"e48c8c6b91b3d69ac485be9273b3e47e92c2054385936107a793035bb1292e02\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.4.2-py3-none-any.whl\"\ - ,\n \"filename\": \"k8s_extension-1.4.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.24.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"k8s-extension\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension\ - \ Extension\",\n \"version\": \"1.4.2\"\n \ - \ },\n \"sha256Digest\": \"af6aa03158a6a075c63a3ae89c860df980e89d78d613c9b7ad8ed9a92e726eea\"\ - \n }\n ],\n \"k8sconfiguration\": [\n \ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.1.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"k8sconfiguration-0.1.7-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"k8sconfiguration\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8sconfiguration Extension\"\ - ,\n \"version\": \"0.1.7\"\n },\n \ - \ \"sha256Digest\": \"6440f1f1bebda0b3288ab95654a107e3f803d1ad2a23276cd5e27abe6a71dd60\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.1.8-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"k8sconfiguration-0.1.8-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"k8sconfiguration\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8sconfiguration Extension\"\ - ,\n \"version\": \"0.1.8\"\n },\n \ - \ \"sha256Digest\": \"9d4b9d9dfcd8793297af670de10254804f5ce6d1bac6b0ad8e872cc5fdc5f761\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"k8sconfiguration-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8sconfiguration\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"k8sconfiguration\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"paramiko (~=2.6.0)\",\n \ - \ \"pycryptodome (~=3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools K8sconfiguration Extension\"\ - ,\n \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"ae3ec26beb84e821a169f02479cfc337b82141738bef7a0b09422d3676add9ae\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.2.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"k8sconfiguration-0.2.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8sconfiguration\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"k8sconfiguration\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"paramiko (~=2.6.0)\",\n \ - \ \"pycryptodome (~=3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools K8sconfiguration Extension\"\ - ,\n \"version\": \"0.2.1\"\n },\n \ - \ \"sha256Digest\": \"a9ae3e56d1289c340ebcb2790775801a9a932d6f5edba66689bada001e35f9ba\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.2.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"k8sconfiguration-0.2.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8sconfiguration\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"k8sconfiguration\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"paramiko (~=2.6.0)\",\n \ - \ \"pycryptodome (~=3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools K8sconfiguration Extension\"\ - ,\n \"version\": \"0.2.2\"\n },\n \ - \ \"sha256Digest\": \"8692905679d9a800326aea7698818778b6f0ce4761232e20e8fc39c67ccb28d3\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.2.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"k8sconfiguration-0.2.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8sconfiguration\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"k8sconfiguration\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"paramiko (~=2.6.0)\",\n \ - \ \"pycryptodome (~=3.9.8)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools K8sconfiguration Extension\"\ - ,\n \"version\": \"0.2.3\"\n },\n \ - \ \"sha256Digest\": \"65f87fadf798e66d87bfd3add12807140523cc324d5ca3dcf03bee2ce6e0839f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.2.4-py3-none-any.whl\"\ - ,\n \"filename\": \"k8sconfiguration-0.2.4-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8sconfiguration\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"k8sconfiguration\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"pycryptodome (~=3.9.8)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools K8sconfiguration\ - \ Extension\",\n \"version\": \"0.2.4\"\n \ - \ },\n \"sha256Digest\": \"39940729eb7820da63d543861395b11552e86673a884bd9d1603a0fbf09e30d7\"\ - \n }\n ],\n \"kusto\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/kusto-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"kusto-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"kusto\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools KustoManagementClient Extension\",\n\ - \ \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"ffa47cb6f8f850e75412dffa6a5e52f857d5e7ca217322ce176eea81d24768e8\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/kusto-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"kusto-0.1.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/kusto\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"kusto\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools KustoManagementClient\ - \ Extension\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"e6febb41b7a6dc6ec752825fe2af9506ff40c227bfcea9a3af5e6ded115003d1\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/kusto-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"kusto-0.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/kusto\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"kusto\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools KustoManagementClient\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"5738e9b48c17008688080a6b3cfd37b67dfe597a538c874ec75dddcc8e18935a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/kusto-0.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"kusto-0.3.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/kusto\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"kusto\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools KustoManagementClient\ - \ Extension\",\n \"version\": \"0.3.0\"\n \ - \ },\n \"sha256Digest\": \"37ed6998527aa8d58798fb8816f94a3bd06859b2cee4d61763f63ec6c00657a7\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/kusto-0.4.0-py3-none-any.whl\"\ - ,\n \"filename\": \"kusto-0.4.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/kusto\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"kusto\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools KustoManagementClient\ - \ Extension\",\n \"version\": \"0.4.0\"\n \ - \ },\n \"sha256Digest\": \"3d08f74cc6e2a90e43b6f2859c2a2828c2a9de8b3b814f07658c6bb15531ec2c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/kusto-0.5.0-py3-none-any.whl\"\ - ,\n \"filename\": \"kusto-0.5.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/kusto\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"kusto\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools KustoManagementClient\ - \ Extension\",\n \"version\": \"0.5.0\"\n \ - \ },\n \"sha256Digest\": \"cf5729e9d02029a189182523543285c9737d515f41c610c8338d43f872f9f01d\"\ - \n }\n ],\n \"load\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"load-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.41.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/load\"\n \ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n \ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"load\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Load Extension.\",\n \ - \ \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"9814fb6215faf902944ef7e7a6e9a8c86f40d8e348ffff64da7befe98fd3d9ef\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"load-0.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.41.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/load\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"load\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Load Extension.\",\n \ - \ \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"373e6f5af459d33f5e8e655ba497b19e15f519918bb3a0ef3e4fd6ba3cc813a2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-0.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"load-0.3.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.41.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/load\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"load\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-core\",\n \"pyyaml\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools Load Extension.\",\n \"version\": \"0.3.0\"\n \ - \ },\n \"sha256Digest\": \"cb64e149679d6c537a29bfb07ef5785c622cf18c12099ee49b0afa36cbec3f82\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-0.3.1-py3-none-any.whl\"\ - ,\n \"filename\": \"load-0.3.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.41.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/load\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"load\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-core\",\n \"pyyaml\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools Load Testing Extension.\",\n \"version\": \"0.3.1\"\ - \n },\n \"sha256Digest\": \"f8d518332a80b94cdf7b07fa03cf65881760b077e0c36ec7d06f9df6749e2238\"\ - \n }\n ],\n \"log-analytics\": [\n {\n\ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics-0.1.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"log_analytics-0.1.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"extensions\": {\n \"\ - python.details\": {\n \"contacts\": [\n \ - \ {\n \"email\"\ - : \"aleldeib@microsoft.com\",\n \"name\"\ - : \"Ace Eldeib\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/log-analytics\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"log-analytics\",\n \ - \ \"summary\": \"Support for Azure Log Analytics query capabilities.\"\ - ,\n \"version\": \"0.1.4\"\n },\n \ - \ \"sha256Digest\": \"6f4789fff8581a52e13bcf8f13fdc16b47662fac69e1fc3ea49280de1a8e65bc\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"log_analytics-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"classifiers\": [\n \"\ - Development Status :: 4 - Beta\",\n \"Intended Audience\ - \ :: Developers\",\n \"Intended Audience :: System\ - \ Administrators\",\n \"Programming Language :: Python\"\ - ,\n \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \"\ - License :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"aleldeib@microsoft.com\"\ - ,\n \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/log-analytics\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"log-analytics\",\n \ - \ \"summary\": \"Support for Azure Log Analytics query capabilities.\"\ - ,\n \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"28a24f605e80c6fc56408add14981e5b4572077f2b5f0c55208f4105624cc91b\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics-0.2.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"log_analytics-0.2.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"aleldeib@microsoft.com\",\n \ - \ \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n }\n\ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/log-analytics\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"log-analytics\",\n \ - \ \"summary\": \"Support for Azure Log Analytics query capabilities.\"\ - ,\n \"version\": \"0.2.1\"\n },\n \ - \ \"sha256Digest\": \"23751654f76334e97c3ae3b10dd4e6896785cbf5c7c9442d3f979ebd6b9c6c21\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics-0.2.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"log_analytics-0.2.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"aleldeib@microsoft.com\",\n \ - \ \"name\": \"Ace Eldeib\",\n \ - \ \"role\": \"author\"\n }\n\ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/log-analytics\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"log-analytics\",\n \ - \ \"summary\": \"Support for Azure Log Analytics query capabilities.\"\ - ,\n \"version\": \"0.2.2\"\n },\n \ - \ \"sha256Digest\": \"c04c42a26d50db82d14f76e209184b18d4cce17b458817ac607e3ff975641eb2\"\ - \n }\n ],\n \"log-analytics-solution\": [\n \ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics_solution-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"log_analytics_solution-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"log-analytics-solution\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Operations Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"844bf0a063b4e244bfe14e215c82d7d70327540b7bf446b7cb1d97ebb8a98119\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics_solution-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"log_analytics_solution-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"log-analytics-solution\",\n \ - \ \"summary\": \"Support for Azure Log Analytics Solution\",\n \ - \ \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"0c85556a82ef5850c9f90b58380c5cde6a70a2bd2a464c0a8e429c77152a87bd\"\ - \n }\n ],\n \"logic\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/logic-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"logic-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"logic\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools LogicManagementClient Extension\",\n\ - \ \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"b02dea64e03adb7cf17a7afafc28844949c0f3a030f4eb005059452f0ac68040\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/logic-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"logic-0.1.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logic\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"logic\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools LogicManagementClient\ - \ Extension\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"906b43b34be4ed38c883a4f2031ff7b2b0547f51b16c8553f050afc2986ec939\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/logic-0.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"logic-0.1.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logic\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"logic\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools LogicManagementClient\ - \ Extension\",\n \"version\": \"0.1.2\"\n \ - \ },\n \"sha256Digest\": \"35127cc723edf1c6311354326ebae9aa5b0d72d11141fddf3efc8fb84eadac81\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/logic-0.1.3-py3-none-any.whl\"\ - ,\n \"filename\": \"logic-0.1.3-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logic\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"logic\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools LogicManagementClient\ - \ Extension\",\n \"version\": \"0.1.3\"\n \ - \ },\n \"sha256Digest\": \"38a1e8285fa8ad34632094b749aa1bea703440c946f01fc546306b8e934f389a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/logic-0.1.4-py3-none-any.whl\"\ - ,\n \"filename\": \"logic-0.1.4-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logic\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"logic\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools LogicManagementClient\ - \ Extension\",\n \"version\": \"0.1.4\"\n \ - \ },\n \"sha256Digest\": \"e350fb81e4f2f6758a77814afebf8a71b4cdcac951142d703da15ca92ab7ca87\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/logic-0.1.5-py3-none-any.whl\"\ - ,\n \"filename\": \"logic-0.1.5-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logic\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"logic\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools LogicManagementClient\ - \ Extension\",\n \"version\": \"0.1.5\"\n \ - \ },\n \"sha256Digest\": \"f0405775947f7581a5df52d97a3959b7fe3bf4b49ddcb487e15147cc1c4d276a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/logic-0.1.6-py3-none-any.whl\"\ - ,\n \"filename\": \"logic-0.1.6-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/logic\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"logic\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools LogicManagementClient\ - \ Extension\",\n \"version\": \"0.1.6\"\n \ - \ },\n \"sha256Digest\": \"b1f713229f624ea9121ef9a3778098cfa8a03bee46aae0c835c44c096c6d1ded\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/logic-0.1.7-py3-none-any.whl\"\ - ,\n \"filename\": \"logic-0.1.7-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.48.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/logic\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"logic\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools LogicManagementClient\ - \ Extension\",\n \"version\": \"0.1.7\"\n \ - \ },\n \"sha256Digest\": \"09e5da23f41c3fdb89430d2229c43b5b44484b1051af1d00dbd719aee53d4063\"\ - \n }\n ],\n \"logz\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/logz-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"logz-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logz\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"logz\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools MicrosoftLogz Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"6a937dbb8c5a758b29afd45ecfc101743a5bf2491f2fba60e8ea512d5b765840\"\ - \n }\n ],\n \"maintenance\": [\n {\n \ - \ \"downloadUrl\": \"https://mrpcliextensionrelease.blob.core.windows.net/cliextension/maintenance-1.0.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"maintenance-1.0.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.47\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 2\",\n \"Programming Language :: Python :: 2.7\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"abkmr@microsoft.com\"\ - ,\n \"name\": \"Abhishek Kumar\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"maintenance\",\n \"summary\"\ - : \"Support for Azure maintenance management.\",\n \"version\"\ - : \"1.0.1\"\n },\n \"sha256Digest\": \"3e0fb5392bd29e53e7afde543d1a0ef5d33a6032f01322fd75b7afe7016c34fc\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/maintenance-1.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"maintenance-1.1.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/maintenance\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"maintenance\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools MaintenanceClient\ - \ Extension\",\n \"version\": \"1.1.0\"\n \ - \ },\n \"sha256Digest\": \"351c717a37e6fb9b29d22cdca3b0744a452a1116e83f9e57e794464311708c97\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/maintenance-1.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"maintenance-1.2.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/maintenance\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"maintenance\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools MaintenanceClient\ - \ Extension\",\n \"version\": \"1.2.0\"\n \ - \ },\n \"sha256Digest\": \"a0108efeddb6228788b878801f3c08c2b68d2df4ff8cc9d5043f1a0a9c2923b1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/maintenance-1.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"maintenance-1.2.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/maintenance\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"maintenance\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools MaintenanceClient\ - \ Extension\",\n \"version\": \"1.2.1\"\n \ - \ },\n \"sha256Digest\": \"b93b0fa34c06fd4df9cef92446d8c61cc5a142ee1fae6e697aa77894959c1044\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/maintenance-1.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"maintenance-1.3.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/maintenance\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"maintenance\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools MaintenanceManagementClient\ - \ Extension\",\n \"version\": \"1.3.0\"\n \ - \ },\n \"sha256Digest\": \"bd261425789df79c795c02fd402b3d71eb3c31e4deb3ccdba078a58315931af0\"\ - \n }\n ],\n \"managedccfs\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managedccfs-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"managedccfs-0.1.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managedccfs\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"managedccfs\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Managedccfs Extension.\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"d54c05071228ab8b4e0f4b07478ac02da6f7af57ef994f75e6283b4150bf64ed\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managedccfs-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"managedccfs-0.2.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managedccfs\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"managedccfs\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Managedccfs Extension.\"\ - ,\n \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"378f425f35420373e9703a5dc8c0f05ca8176fb8404b38610d4de828f7c23d37\"\ - \n }\n ],\n \"managednetworkfabric\": [\n \ - \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-1.0.0b1-py3-none-any.whl\"\ - ,\n \"filename\": \"managednetworkfabric-1.0.0b1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managednetworkfabric\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"managednetworkfabric\",\n \ - \ \"summary\": \"Support for managednetworkfabric commands\ - \ based on 2023-02-01-preview API version.\",\n \"version\"\ - : \"1.0.0b1\"\n },\n \"sha256Digest\": \"17e8e5be87baaeb2b59ab578c646e0ec978ac7ec0a610f9145515ccefce6e274\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-1.0.0b2-py3-none-any.whl\"\ - ,\n \"filename\": \"managednetworkfabric-1.0.0b2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managednetworkfabric\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"managednetworkfabric\",\n \ - \ \"summary\": \"Support for managednetworkfabric commands\ - \ based on 2023-02-01-preview API version.\",\n \"version\"\ - : \"1.0.0b2\"\n },\n \"sha256Digest\": \"c521778380078c441fb6bbc41449a5c18ca75b4ce93c559a2c82b46a86506d82\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-3.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"managednetworkfabric-3.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managednetworkfabric\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"managednetworkfabric\",\n \ - \ \"summary\": \"Support for managednetworkfabric commands\ - \ based on 2023-06-15 API version.\",\n \"version\": \"\ - 3.1.0\"\n },\n \"sha256Digest\": \"8837fd0a52557b0a20fe0aa1e8eb1974f4357de778803a06fbd6ea923d3743b2\"\ - \n }\n ],\n \"managementpartner\": [\n \ - \ {\n \"downloadUrl\": \"https://files.pythonhosted.org/packages/28/08/0fde582cf50eaf1ef304b35674b9b22f6731d95b2e41339eba4d35583b18/managementpartner-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"managementpartner-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"classifiers\": [\n\ - \ \"Development Status :: 4 - Beta\",\n \ - \ \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \"Programming\ - \ Language :: Python :: 2\",\n \"Programming Language\ - \ :: Python :: 2.7\",\n \"Programming Language :: Python\ - \ :: 3\",\n \"Programming Language :: Python :: 3.4\"\ - ,\n \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"jefl@microsoft.com\",\n \"name\"\ - : \"Jeffrey Li\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.29.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"managementpartner\",\n \ - \ \"summary\": \"Support for Management Partner preview\",\n \ - \ \"version\": \"0.1.2\"\n },\n \ - \ \"sha256Digest\": \"f7ec0984b4d5a4c9192aa3ab6b78c867fc38cf620effef1804d89c9d1d9f204f\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/managementpartner-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"managementpartner-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"jefl@microsoft.com\",\n \ - \ \"name\": \"Jeffrey Li\",\n \ - \ \"role\": \"author\"\n }\n \ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"managementpartner\",\n \ - \ \"summary\": \"Support for Management Partner preview\",\n \ - \ \"version\": \"0.1.3\"\n },\n \ - \ \"sha256Digest\": \"22ddf4b1cdc77e99262cb6089c4d96040065828a1d38a2709fdb945d3c851839\"\ - \n }\n ],\n \"mesh\": [\n {\n \ - \ \"downloadUrl\": \"https://meshcli.blob.core.windows.net/cli/mesh-0.10.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"mesh-0.10.6-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel\ - \ (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"name\": \"mesh\"\ - ,\n \"run_requires\": [\n {\n \ - \ \"requires\": [\n \ - \ \"sfmergeutility (==0.1.6)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Support for Microsoft Azure Service Fabric Mesh - Public Preview\",\n\ - \ \"version\": \"0.10.6\"\n },\n \ - \ \"sha256Digest\": \"07b6356cd15294c0bc0b31cfde1cdb2b92516b00728980d7a53557bb49273842\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mesh-0.10.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"mesh-0.10.7-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/mesh\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"mesh\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"sfmergeutility (==0.1.6)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Support for Microsoft Azure Service Fabric Mesh - Public\ - \ Preview\",\n \"version\": \"0.10.7\"\n \ - \ },\n \"sha256Digest\": \"9433191eba661716d5f42fd53dcbc9c2711ec568ed444bfcd0fe3555a717fa0b\"\ - \n }\n ],\n \"mixed-reality\": [\n {\n\ - \ \"downloadUrl\": \"https://test-files.pythonhosted.org/packages/e4/fa/14628eb512ef4f0c38e4e6c8ee2d0624e03d352ca0ec1b1167a32f9de9a3/mixed_reality-0.0.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"mixed_reality-0.0.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"classifiers\": [\n\ - \ \"Development Status :: 4 - Beta\",\n \ - \ \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \"Programming\ - \ Language :: Python :: 2\",\n \"Programming Language\ - \ :: Python :: 2.7\",\n \"Programming Language :: Python\ - \ :: 3\",\n \"Programming Language :: Python :: 3.4\"\ - ,\n \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"xiangyul@microsoft.com\",\n \ - \ \"name\": \"Xiangyu Luo\",\n \"role\"\ - : \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"mixed-reality\",\n \ - \ \"summary\": \"Mixed Reality Azure CLI Extension.\",\n \ - \ \"version\": \"0.0.1\"\n },\n \"\ - sha256Digest\": \"c5b7ef47d8db578920bcbda371a47edd19f8f681088823c2622dcb9332417587\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/mixed_reality-0.0.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"mixed_reality-0.0.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.30\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"xiangyul@microsoft.com\",\n \ - \ \"name\": \"Xiangyu Luo\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"mixed-reality\",\n \ - \ \"summary\": \"Mixed Reality Azure CLI Extension.\",\n \ - \ \"version\": \"0.0.2\"\n },\n \"\ - sha256Digest\": \"30449391c1d1e9d67210d0ef81109a11a0f74a24a6f07644c17aed58cf056173\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mixed_reality-0.0.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"mixed_reality-0.0.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"xiangyul@microsoft.com\"\ - ,\n \"name\": \"Xiangyu Luo\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/mixed-reality\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"mixed-reality\",\n \ - \ \"summary\": \"Mixed Reality Azure CLI Extension.\",\n \ - \ \"version\": \"0.0.3\"\n },\n \"\ - sha256Digest\": \"29f07fa6db12c70f9b93a3914d61ea108a5f410f40bc92389c1a87ea9312c766\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mixed_reality-0.0.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"mixed_reality-0.0.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"xiangyul@microsoft.com\"\ - ,\n \"name\": \"Xiangyu Luo\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/mixed-reality\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"mixed-reality\",\n \ - \ \"summary\": \"Mixed Reality Azure CLI Extension.\",\n \ - \ \"version\": \"0.0.4\"\n },\n \"\ - sha256Digest\": \"509b675781949c69baa911261a0637ba5a0fac9b11ee458feea7ddfb71393fef\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mixed_reality-0.0.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"mixed_reality-0.0.5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"xiangyul@microsoft.com\"\ - ,\n \"name\": \"Xiangyu Luo\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/mixed-reality\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"mixed-reality\",\n \ - \ \"summary\": \"Mixed Reality Azure CLI Extension.\",\n \ - \ \"version\": \"0.0.5\"\n },\n \"\ - sha256Digest\": \"026aaf58f9ad02d74837d21a1f5c122264a59814e0b7c395c26e5fdc1293187e\"\ - \n }\n ],\n \"ml\": [\n {\n \ - \ \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.0a1-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.0.0a1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ml\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-identity\",\n \"\ - azure-storage-blob (<=12.5.0,>12.0.0b4)\",\n \ - \ \"azure-storage-file-share (==12.3.0)\",\n \ - \ \"cryptography (<=3.3.2)\",\n \"docker\ - \ (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \ - \ \"pathspec (==0.8.*)\",\n \ - \ \"pydash (<=4.9.0)\",\n \"pyjwt (<2.0.0)\"\ - ,\n \"tqdm\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces\ - \ Extension\",\n \"version\": \"2.0.0a1\"\n \ - \ },\n \"sha256Digest\": \"da1a040a0755f2b6898ac6ed9f90241a38b776031e74d070431cd2ba63a13ea3\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.1a1-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.0.1a1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ml\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-identity\",\n \"\ - azure-storage-blob (<=12.5.0,>12.0.0b4)\",\n \ - \ \"azure-storage-file-share (==12.3.0)\",\n \ - \ \"cryptography (<=3.3.2)\",\n \"docker\ - \ (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \ - \ \"pathspec (==0.8.*)\",\n \ - \ \"pydash (<=4.9.0)\",\n \"pyjwt (<2.0.0)\"\ - ,\n \"tqdm\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces\ - \ Extension\",\n \"version\": \"2.0.1a1\"\n \ - \ },\n \"sha256Digest\": \"079a8f3ecf3f0816a8afd4fe65303940721679f02718f70ddb706934201ada50\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.1a2-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.0.1a2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ml\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-identity\",\n \"\ - azure-storage-blob (<=12.5.0,>12.0.0b4)\",\n \ - \ \"azure-storage-file-share (==12.3.0)\",\n \ - \ \"cryptography (<=3.3.2)\",\n \"docker\ - \ (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \ - \ \"pathspec (==0.8.*)\",\n \ - \ \"pydash (<=4.9.0)\",\n \"pyjwt (<2.0.0)\"\ - ,\n \"tqdm\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces\ - \ Extension\",\n \"version\": \"2.0.1a2\"\n \ - \ },\n \"sha256Digest\": \"b17126a35dd3ebb65cbe54fe2d69fc9274b37ec5a150ea084b1b343b7393ccde\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.1a3-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.0.1a3-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ml\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-identity\",\n \"\ - azure-storage-blob (<=12.5.0,>12.0.0b4)\",\n \ - \ \"azure-storage-file-share (==12.3.0)\",\n \ - \ \"cryptography (<=3.3.2)\",\n \"docker\ - \ (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \ - \ \"pathspec (==0.8.*)\",\n \ - \ \"pydash (<=4.9.0)\",\n \"pyjwt (<2.0.0)\"\ - ,\n \"tqdm\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces\ - \ Extension\",\n \"version\": \"2.0.1a3\"\n \ - \ },\n \"sha256Digest\": \"67c57c5c73d7ebaa99d1df52ba82c7a551bf61a182b4888128e8c62c896cf84b\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.1a4-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.0.1a4-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ml\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-identity\",\n \"\ - azure-storage-blob (<=12.5.0,>12.0.0b4)\",\n \ - \ \"azure-storage-file-share (==12.3.0)\",\n \ - \ \"cryptography (<=3.3.2)\",\n \"docker\ - \ (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \ - \ \"pathspec (==0.8.*)\",\n \ - \ \"pydash (<=4.9.0)\",\n \"pyjwt (<2.0.0)\"\ - ,\n \"tqdm\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces\ - \ Extension\",\n \"version\": \"2.0.1a4\"\n \ - \ },\n \"sha256Digest\": \"5a20917c68a953ad52c6c0596cd04e8c89f833e8ede17e64866a26f43e7f0164\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.1a5-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.0.1a5-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ml\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-identity\",\n \"\ - azure-storage-blob (<=12.5.0,>12.0.0b4)\",\n \ - \ \"azure-storage-file-share (==12.3.0)\",\n \ - \ \"cryptography (<=3.3.2)\",\n \"docker\ - \ (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \ - \ \"pathspec (==0.8.*)\",\n \ - \ \"pydash (<=4.9.0)\",\n \"pyjwt (<2.0.0)\"\ - ,\n \"tqdm\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces\ - \ Extension\",\n \"version\": \"2.0.1a5\"\n \ - \ },\n \"sha256Digest\": \"234ad4707c7c2b4bace2f4c3ed9e15f2f47d01ee00f7a5e13ccafaacec6de8d2\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.2-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.0.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"extensions\": {\n \"python.details\":\ - \ {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ml\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-identity\",\n \"\ - azure-storage-blob (<=12.5.0,>12.0.0b4)\",\n \ - \ \"azure-storage-file-share (==12.3.0)\",\n \ - \ \"cryptography (<=3.3.2)\",\n \"docker\ - \ (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \ - \ \"pathspec (==0.8.*)\",\n \ - \ \"pydash (<=4.9.0)\",\n \"pyjwt (<2.0.0)\"\ - ,\n \"tqdm\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces\ - \ Extension\",\n \"version\": \"2.0.2\"\n \ - \ },\n \"sha256Digest\": \"80dc61c8d6778a262b882dc0c5e05b77551e64d338d90fbe8a7eb8c731f6814c\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.3-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.0.3-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"extensions\": {\n \"python.details\":\ - \ {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ml\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-common (<2.0.0,>=1.1)\",\n \ - \ \"azure-identity\",\n \"azure-storage-blob\ - \ (<=12.9.0,>12.0.0b4)\",\n \"azure-storage-file-share\ - \ (<13.0.0)\",\n \"cryptography (<=3.3.2)\"\ - ,\n \"docker (>=4.0.0,~=5.0.0)\",\n \ - \ \"isodate\",\n \"\ - marshmallow (<4.0.0,>=3.5)\",\n \"pathspec\ - \ (==0.8.*)\",\n \"pydash (<=4.9.0)\",\n \ - \ \"pyjwt (<2.0.0)\",\n \ - \ \"tqdm\",\n \"typing-extensions\ - \ (<4.0.0,>=3.10)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \ - \ \"version\": \"2.0.3\"\n },\n \ - \ \"sha256Digest\": \"3eac9a5c8ee9e78151d9bbcc54eb978a1987f6fd7c1beef0b4a575113f0a4466\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.7-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.0.7-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"extensions\": {\n \"python.details\":\ - \ {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ml\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-common (<2.0.0,>=1.1)\",\n \ - \ \"azure-identity\",\n \"azure-storage-blob\ - \ (<=12.9.0,>12.0.0b4)\",\n \"azure-storage-file-share\ - \ (<13.0.0)\",\n \"cryptography (<=3.3.2)\"\ - ,\n \"docker (>=4.0.0,~=5.0.0)\",\n \ - \ \"isodate\",\n \"\ - marshmallow (<4.0.0,>=3.5)\",\n \"pathspec\ - \ (==0.9.*)\",\n \"pydash (<=4.9.0)\",\n \ - \ \"pyjwt (<=2.3.0)\",\n \ - \ \"tqdm (<=4.63.0)\",\n \"typing-extensions\ - \ (<4.0.0,>=3.10)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \ - \ \"version\": \"2.0.7\"\n },\n \ - \ \"sha256Digest\": \"67f5f65437e50c763ddc9595542d5b12f949c1e325c30a93317ca5f292ad25e5\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.1.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"extensions\": {\n \"python.details\":\ - \ {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ml\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-common (<2.0.0,>=1.1)\",\n \ - \ \"azure-identity\",\n \"azure-storage-blob\ - \ (<=12.9.0,>12.0.0b4)\",\n \"azure-storage-file-share\ - \ (<13.0.0)\",\n \"cryptography (<=3.3.2)\"\ - ,\n \"docker (>=4.0.0,~=5.0.0)\",\n \ - \ \"isodate\",\n \"\ - marshmallow (<4.0.0,>=3.5)\",\n \"pathspec\ - \ (==0.9.*)\",\n \"pydash (<=4.9.0)\",\n \ - \ \"pyjwt (<=2.3.0)\",\n \ - \ \"tqdm (<=4.63.0)\",\n \"typing-extensions\ - \ (<4.0.0,>=3.10)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \ - \ \"version\": \"2.1.1\"\n },\n \ - \ \"sha256Digest\": \"373fa36ced7ef00a8caeb818bf8d83a52ca519e01180a0191b99bdfeae95a037\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.1.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"extensions\": {\n \"python.details\":\ - \ {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ml\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-common (<2.0.0,>=1.1)\",\n \ - \ \"azure-identity\",\n \"azure-storage-blob\ - \ (<=12.9.0,>12.0.0b4)\",\n \"azure-storage-file-share\ - \ (<13.0.0)\",\n \"cryptography (<=3.3.2)\"\ - ,\n \"docker (>=4.0.0,~=5.0.0)\",\n \ - \ \"isodate\",\n \"\ - marshmallow (<4.0.0,>=3.5)\",\n \"pathspec\ - \ (==0.9.*)\",\n \"pydash (<=4.9.0)\",\n \ - \ \"pyjwt (<=2.3.0)\",\n \ - \ \"tqdm (<=4.63.0)\",\n \"typing-extensions\ - \ (<4.0.0,>=3.10)\"\n ]\n \ - \ }\n ],\n \"summary\": \"Microsoft\ - \ Azure Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \ - \ \"version\": \"2.1.2\"\n },\n \ - \ \"sha256Digest\": \"19845c2b0d3701f5ff9e34162047c0c85f57904e17cdcbdde784ab4c8ac2fc49\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.2.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"extensions\": {\n \"python.details\":\ - \ {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ml\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"applicationinsights (<=0.11.10)\",\n \ - \ \"azure-common (<2.0.0,>=1.1)\",\n \ - \ \"azure-identity\",\n \"azure-storage-blob\ - \ (<=12.9.0,>12.0.0b4)\",\n \"azure-storage-file-share\ - \ (<13.0.0)\",\n \"colorama (<=0.4.4)\",\n\ - \ \"cryptography (<=3.3.2)\",\n \ - \ \"docker (>=4.0.0,~=5.0.0)\",\n \ - \ \"isodate\",\n \"marshmallow (<4.0.0,>=3.5)\"\ - ,\n \"pathspec (==0.9.*)\",\n \ - \ \"pydash (<=4.9.0)\",\n \ - \ \"pyjwt (<=2.3.0)\",\n \"tqdm (<=4.63.0)\"\ - ,\n \"typing-extensions (<4.0.0,>=3.10)\"\n\ - \ ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools AzureMachineLearningWorkspaces Extension\",\n \"\ - version\": \"2.2.1\"\n },\n \"sha256Digest\"\ - : \"9e0c11f0d587d5c34969bef3287de5fba3f6fc398541812d2dc4c4db47e24498\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.2.2-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.2.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"extensions\": {\n \"python.details\":\ - \ {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ml\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"applicationinsights (<=0.11.10)\",\n \ - \ \"azure-common (<2.0.0,>=1.1)\",\n \ - \ \"azure-identity\",\n \"azure-storage-blob\ - \ (<=12.9.0,>12.0.0b4)\",\n \"azure-storage-file-share\ - \ (<13.0.0)\",\n \"colorama (<=0.4.4)\",\n\ - \ \"cryptography (<=3.3.2)\",\n \ - \ \"docker (>=4.0.0,~=5.0.0)\",\n \ - \ \"isodate\",\n \"marshmallow (<4.0.0,>=3.5)\"\ - ,\n \"pathspec (==0.9.*)\",\n \ - \ \"pydash (<=4.9.0)\",\n \ - \ \"pyjwt (<=2.3.0)\",\n \"tqdm (<=4.63.0)\"\ - ,\n \"typing-extensions (<4.0.0,>=3.10)\"\n\ - \ ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools AzureMachineLearningWorkspaces Extension\",\n \"\ - version\": \"2.2.2\"\n },\n \"sha256Digest\"\ - : \"69cf00542a4acc6a1d22c9a0c020268cdccf0b3f52d1c49edb0cd1d6b4056237\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.2.3-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.2.3-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ml\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"applicationinsights (<=0.11.10)\",\n \ - \ \"azure-common (<2.0.0,>=1.1)\",\n \ - \ \"azure-identity\",\n \"azure-storage-blob\ - \ (<=12.9.0,>12.0.0b4)\",\n \"azure-storage-file-share\ - \ (<13.0.0)\",\n \"colorama (<=0.4.4)\",\n\ - \ \"cryptography (<=3.3.2)\",\n \ - \ \"docker\",\n \"isodate\"\ - ,\n \"marshmallow (<4.0.0,>=3.5)\",\n \ - \ \"pathspec (==0.9.*)\",\n \ - \ \"pydash (<=4.9.0)\",\n \"pyjwt\ - \ (<=2.3.0)\",\n \"tqdm (<=4.63.0)\",\n \ - \ \"typing-extensions (<4.0.0,>=3.10)\"\n \ - \ ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line Tools\ - \ AzureMachineLearningWorkspaces Extension\",\n \"version\"\ - : \"2.2.3\"\n },\n \"sha256Digest\": \"6cbfac0985961d82ae22fe7bccac9cee8a26c78958756f463ced58913ef96409\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.3.1-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.3.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"Programming\ - \ Language :: Python :: 3.9\",\n \"Programming Language\ - \ :: Python :: 3.10\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ml\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"applicationinsights (<=0.11.10)\",\n \ - \ \"azure-common (<2.0.0,>=1.1)\",\n \ - \ \"azure-identity\",\n \"azure-storage-blob\ - \ (<=12.9.0,>12.0.0b4)\",\n \"azure-storage-file-share\ - \ (<13.0.0)\",\n \"colorama (<=0.4.4)\",\n\ - \ \"cryptography\",\n \ - \ \"docker\",\n \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \ - \ \"pathspec (==0.9.*)\",\n \ - \ \"pydash (<=4.9.0)\",\n \"pyjwt (<=2.3.0)\"\ - ,\n \"tqdm (<=4.63.0)\",\n \ - \ \"typing-extensions (<4.0.0,>=3.10)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces\ - \ Extension\",\n \"version\": \"2.3.1\"\n \ - \ },\n \"sha256Digest\": \"b296b2f83a88746f8be534b61a21e8a3e51f01b57b240897f79b9f9289388643\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.4.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.4.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\",\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"applicationinsights (<=0.11.10)\"\ - ,\n \"azure-common (<2.0.0,>=1.1)\",\n \ - \ \"azure-identity\",\n \ - \ \"azure-storage-blob (<=12.9.0,>=12.5.0)\",\n \ - \ \"azure-storage-file-share (<13.0.0)\",\n \ - \ \"colorama (<=0.4.4)\",\n \"\ - cryptography\",\n \"docker\",\n \ - \ \"isodate\",\n \"jsonschema\ - \ (<5.0.0,>=4.0.0)\",\n \"marshmallow (<4.0.0,>=3.5)\"\ - ,\n \"pathspec (==0.9.*)\",\n \ - \ \"pydash (<=4.9.0)\",\n \ - \ \"pyjwt (<=2.3.0)\",\n \"tqdm (<=4.63.0)\"\ - ,\n \"typing-extensions (<4.0.0,>=3.10)\"\n\ - \ ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools AzureMachineLearningWorkspaces Extension\",\n \"\ - version\": \"2.4.0\"\n },\n \"sha256Digest\"\ - : \"12619f9c3d0908f934a4e76e5c3dcf5c86bd58c89819c725b9c0dad143adac51\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.4.1-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.4.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\",\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"applicationinsights (<=0.11.10)\"\ - ,\n \"azure-common (<2.0.0,>=1.1)\",\n \ - \ \"azure-identity\",\n \ - \ \"azure-storage-blob (<=12.9.0,>=12.5.0)\",\n \ - \ \"azure-storage-file-share (<13.0.0)\",\n \ - \ \"colorama (<=0.4.4)\",\n \"\ - cryptography\",\n \"docker\",\n \ - \ \"isodate\",\n \"jsonschema\ - \ (<5.0.0,>=4.0.0)\",\n \"marshmallow (<4.0.0,>=3.5)\"\ - ,\n \"pathspec (==0.9.*)\",\n \ - \ \"pydash (<=4.9.0)\",\n \ - \ \"pyjwt (<=2.3.0)\",\n \"tqdm (<=4.63.0)\"\ - ,\n \"typing-extensions (<4.0.0,>=3.10)\"\n\ - \ ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools AzureMachineLearningWorkspaces Extension\",\n \"\ - version\": \"2.4.1\"\n },\n \"sha256Digest\"\ - : \"646e548193d1eb96618f9d1c3e53f54cc8d5fb9b8de6cd67a11065567dae21ad\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.5.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.5.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\",\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"applicationinsights (<=0.11.10)\"\ - ,\n \"azure-common (<2.0.0,>=1.1)\",\n \ - \ \"azure-identity\",\n \ - \ \"azure-storage-blob (<13.0.0,>=12.10.0)\",\n \ - \ \"azure-storage-file-datalake (<=12.6.0)\",\n \ - \ \"azure-storage-file-share (<13.0.0)\",\n \ - \ \"colorama (<=0.4.4)\",\n \ - \ \"cryptography\",\n \"docker\",\n \ - \ \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow\ - \ (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\"\ - ,\n \"pydash (<=4.9.0)\",\n \ - \ \"pyjwt (<=2.3.0)\",\n \"\ - tqdm (<=4.63.0)\",\n \"typing-extensions (>=4.0.1)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools AzureMachineLearningWorkspaces Extension\",\n \"\ - version\": \"2.5.0\"\n },\n \"sha256Digest\"\ - : \"66c2c3dd71040be0ba304b80e25e8f5f2196caa3970e3c7e15d260243dde31e7\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.6.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.6.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\",\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"applicationinsights (<=0.11.10)\"\ - ,\n \"azure-common (<2.0.0,>=1.1)\",\n \ - \ \"azure-identity\",\n \ - \ \"azure-storage-blob (<12.13.0,>=12.10.0)\",\n \ - \ \"azure-storage-file-datalake (<=12.8.0)\",\n \ - \ \"azure-storage-file-share (<12.9.0)\",\n \ - \ \"colorama (<=0.4.4)\",\n \ - \ \"cryptography\",\n \"docker\",\n \ - \ \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"\ - marshmallow (<4.0.0,>=3.5)\",\n \"pathspec\ - \ (==0.9.*)\",\n \"pydash (<=4.9.0)\",\n \ - \ \"pyjwt (<3.0.0)\",\n \ - \ \"strictyaml (<=1.6.1)\",\n \"\ - tqdm (<=4.63.0)\",\n \"typing-extensions (>=4.0.1)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools AzureMachineLearningWorkspaces Extension\",\n \"\ - version\": \"2.6.0\"\n },\n \"sha256Digest\"\ - : \"9d5d0c3c4cf260a7a4590c00200d7a9de4824017f657fe0a499887fdcf4d8b9c\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.6.1-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.6.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\",\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"applicationinsights (<=0.11.10)\"\ - ,\n \"azure-common (<2.0.0,>=1.1)\",\n \ - \ \"azure-identity\",\n \ - \ \"azure-storage-blob (<12.13.0,>=12.10.0)\",\n \ - \ \"azure-storage-file-datalake (<=12.8.0)\",\n \ - \ \"azure-storage-file-share (<12.9.0)\",\n \ - \ \"colorama (<=0.4.4)\",\n \ - \ \"cryptography\",\n \"docker\",\n \ - \ \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"\ - marshmallow (<4.0.0,>=3.5)\",\n \"pathspec\ - \ (==0.9.*)\",\n \"pydash (<=4.9.0)\",\n \ - \ \"pyjwt (<3.0.0)\",\n \ - \ \"strictyaml (<=1.6.1)\",\n \"\ - tqdm (<=4.63.0)\",\n \"typing-extensions (>=4.0.1)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools AzureMachineLearningWorkspaces Extension\",\n \"\ - version\": \"2.6.1\"\n },\n \"sha256Digest\"\ - : \"a39a600331658e27774e33e7b6ed73b76d85c5b75bf14d1b80d7c492934badcc\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.7.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.7.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\",\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"applicationinsights (<=0.11.10)\"\ - ,\n \"azure-common (<2.0.0,>=1.1)\",\n \ - \ \"azure-identity\",\n \ - \ \"azure-storage-blob (<12.13.0,>=12.10.0)\",\n \ - \ \"azure-storage-file-datalake (<12.8.0)\",\n \ - \ \"azure-storage-file-share (<12.9.0)\",\n \ - \ \"colorama (<=0.4.4)\",\n \ - \ \"cryptography\",\n \"docker\",\n \ - \ \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow\ - \ (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\"\ - ,\n \"pydash (<=4.9.0)\",\n \ - \ \"pyjwt (<3.0.0)\",\n \"\ - strictyaml (<=1.6.1)\",\n \"tqdm (<=4.63.0)\"\ - ,\n \"typing-extensions (>=4.0.1)\"\n \ - \ ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line Tools\ - \ AzureMachineLearningWorkspaces Extension\",\n \"version\"\ - : \"2.7.0\"\n },\n \"sha256Digest\": \"545465410e7c891ecfaf09a5d074745576a872db8c4b3691ce16c13fa76493bd\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.7.1-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.7.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\",\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"applicationinsights (<=0.11.10)\"\ - ,\n \"azure-common (<2.0.0,>=1.1)\",\n \ - \ \"azure-identity\",\n \ - \ \"azure-storage-blob (<12.13.0,>=12.10.0)\",\n \ - \ \"azure-storage-file-datalake (<12.8.0)\",\n \ - \ \"azure-storage-file-share (<12.9.0)\",\n \ - \ \"colorama (<=0.4.4)\",\n \ - \ \"cryptography\",\n \"docker\",\n \ - \ \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow\ - \ (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\"\ - ,\n \"pydash (<=4.9.0)\",\n \ - \ \"pyjwt (<3.0.0)\",\n \"\ - strictyaml (<=1.6.1)\",\n \"tqdm (<=4.63.0)\"\ - ,\n \"typing-extensions (>=4.0.1)\"\n \ - \ ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line Tools\ - \ AzureMachineLearningWorkspaces Extension\",\n \"version\"\ - : \"2.7.1\"\n },\n \"sha256Digest\": \"42119a1eb36735135450160c28206d4e502649e047c7fee4b9058783cbfca17f\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.8.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.8.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\",\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"applicationinsights (<=0.11.10)\"\ - ,\n \"azure-common (<2.0.0,>=1.1)\",\n \ - \ \"azure-storage-blob (<12.13.0,>=12.10.0)\",\n\ - \ \"azure-storage-file-datalake (<12.8.0)\"\ - ,\n \"azure-storage-file-share (<12.9.0)\"\ - ,\n \"colorama (<=0.4.4)\",\n \ - \ \"cryptography\",\n \"\ - docker\",\n \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \ - \ \"pathspec (==0.9.*)\",\n \"pydash (<=4.9.0)\"\ - ,\n \"pyjwt (<3.0.0)\",\n \ - \ \"strictyaml (<=1.6.1)\",\n \ - \ \"tqdm (<=4.63.0)\",\n \"typing-extensions\ - \ (>=4.0.1)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Microsoft Azure\ - \ Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \ - \ \"version\": \"2.8.0\"\n },\n \ - \ \"sha256Digest\": \"b2579e95b5e563633e2975286837540968a2773880ea40cf7d7e678eb09ab9d3\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.9.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.9.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"applicationinsights (<=0.11.10)\"\ - ,\n \"azure-common (<2.0.0,>=1.1)\",\n \ - \ \"azure-storage-blob (<13.0.0,>=12.10.0)\",\n\ - \ \"azure-storage-file-datalake (<13.0.0)\"\ - ,\n \"azure-storage-file-share (<13.0.0)\"\ - ,\n \"colorama (<=0.4.4)\",\n \ - \ \"cryptography\",\n \"\ - docker\",\n \"docker\",\n \ - \ \"isodate\",\n \"jsonschema\ - \ (<5.0.0,>=4.0.0)\",\n \"marshmallow (<4.0.0,>=3.5)\"\ - ,\n \"pydash (<6.0.0)\",\n \ - \ \"pyjwt (<3.0.0)\",\n \"strictyaml\ - \ (<=1.6.1)\",\n \"tqdm (<=4.63.0)\",\n \ - \ \"typing-extensions (<5.0.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces\ - \ Extension\",\n \"version\": \"2.9.0\"\n \ - \ },\n \"sha256Digest\": \"b899b67d572d38b29f5ac030b411ae37bbe4bcbfa421ffd75986fa8d4e78e3cb\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.10.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.10.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-common (<2.0.0,>=1.1)\"\ - ,\n \"azure-storage-blob (<13.0.0,>=12.10.0)\"\ - ,\n \"azure-storage-file-datalake (<13.0.0)\"\ - ,\n \"azure-storage-file-share (<13.0.0)\"\ - ,\n \"colorama (<=0.4.4)\",\n \ - \ \"cryptography\",\n \"\ - docker\",\n \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \ - \ \"pydash (<6.0.0)\",\n \"pyjwt (<3.0.0)\"\ - ,\n \"strictyaml (<=1.6.1)\",\n \ - \ \"tqdm (<=4.63.0)\",\n \ - \ \"typing-extensions (<5.0.0)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces Extension\"\ - ,\n \"version\": \"2.10.0\"\n },\n \ - \ \"sha256Digest\": \"f510061270cb368a88e84c14f58cbb4bf49220e46e320718dd0efee7889b6ce8\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.11.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.11.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-common (<2.0.0,>=1.1)\"\ - ,\n \"azure-storage-blob (<13.0.0,>=12.10.0)\"\ - ,\n \"azure-storage-file-datalake (<13.0.0)\"\ - ,\n \"azure-storage-file-share (<13.0.0)\"\ - ,\n \"colorama (<0.5.0)\",\n \ - \ \"cryptography\",\n \"docker\"\ - ,\n \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure\ - \ (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \ - \ \"pyjwt (<3.0.0)\",\n \ - \ \"strictyaml (<2.0.0)\",\n \"tqdm\ - \ (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools AzureMachineLearningWorkspaces Extension\",\n \"\ - version\": \"2.11.0\"\n },\n \"sha256Digest\"\ - : \"26627137dd0fb9d276b1a111ec2659e2f9ea840376bcab64b2e7888c13db4087\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.12.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.12.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-common (<2.0.0,>=1.1)\"\ - ,\n \"azure-storage-blob (<13.0.0,>=12.10.0)\"\ - ,\n \"azure-storage-file-datalake (<13.0.0)\"\ - ,\n \"azure-storage-file-share (<13.0.0)\"\ - ,\n \"colorama (<0.5.0)\",\n \ - \ \"cryptography\",\n \"docker\"\ - ,\n \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure\ - \ (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \ - \ \"pyjwt (<3.0.0)\",\n \ - \ \"strictyaml (<2.0.0)\",\n \"tqdm\ - \ (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools AzureMachineLearningWorkspaces Extension\",\n \"\ - version\": \"2.12.0\"\n },\n \"sha256Digest\"\ - : \"fc36a71835ec46baa7b6a132fef076bd6626cb7034896842ea11a4e6429bd528\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.12.1-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.12.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-common (<2.0.0,>=1.1)\"\ - ,\n \"azure-storage-blob (<13.0.0,>=12.10.0)\"\ - ,\n \"azure-storage-file-datalake (<13.0.0)\"\ - ,\n \"azure-storage-file-share (<13.0.0)\"\ - ,\n \"colorama (<0.5.0)\",\n \ - \ \"cryptography\",\n \"docker\"\ - ,\n \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure\ - \ (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \ - \ \"pyjwt (<3.0.0)\",\n \ - \ \"strictyaml (<2.0.0)\",\n \"tqdm\ - \ (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools AzureMachineLearningWorkspaces Extension\",\n \"\ - version\": \"2.12.1\"\n },\n \"sha256Digest\"\ - : \"8a5a3733a1bc65e4b100db5aab72bfe322ad4d4b5268c04dcf03da87374f77ce\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.13.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.13.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-common (<2.0.0,>=1.1)\"\ - ,\n \"azure-storage-blob (<13.0.0,>=12.10.0)\"\ - ,\n \"azure-storage-file-datalake (<13.0.0)\"\ - ,\n \"azure-storage-file-share (<13.0.0)\"\ - ,\n \"colorama (<0.5.0)\",\n \ - \ \"cryptography\",\n \"docker\"\ - ,\n \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \"pydash\ - \ (<6.0.0)\",\n \"pyjwt (<3.0.0)\",\n \ - \ \"strictyaml (<2.0.0)\",\n \ - \ \"tqdm (<5.0.0)\",\n \"typing-extensions\ - \ (<5.0.0)\"\n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure\ - \ Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \ - \ \"version\": \"2.13.0\"\n },\n \ - \ \"sha256Digest\": \"24d2f8af646ace7d5b2c7c49adb8eff7e6d8a8610cbf071b2654695f8d512f3f\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.14.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.14.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-common (<2.0.0,>=1.1)\"\ - ,\n \"azure-storage-blob (<13.0.0,>=12.10.0)\"\ - ,\n \"azure-storage-file-datalake (<13.0.0)\"\ - ,\n \"azure-storage-file-share (<13.0.0)\"\ - ,\n \"colorama (<0.5.0)\",\n \ - \ \"cryptography\",\n \"docker\"\ - ,\n \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \"pydash\ - \ (<6.0.0)\",\n \"pyjwt (<3.0.0)\",\n \ - \ \"strictyaml (<2.0.0)\",\n \ - \ \"tqdm (<5.0.0)\",\n \"typing-extensions\ - \ (<5.0.0)\"\n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure\ - \ Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \ - \ \"version\": \"2.14.0\"\n },\n \ - \ \"sha256Digest\": \"90e8e03ff67f1c6b73219b44764a44e6e45ab7786ff5dd26660ba9f600879747\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.14.1-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.14.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-common (<2.0.0,>=1.1)\"\ - ,\n \"azure-storage-blob (<13.0.0,>=12.10.0)\"\ - ,\n \"azure-storage-file-datalake (<13.0.0)\"\ - ,\n \"azure-storage-file-share (<13.0.0)\"\ - ,\n \"colorama (<0.5.0)\",\n \ - \ \"cryptography\",\n \"docker\"\ - ,\n \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \"pydash\ - \ (<6.0.0)\",\n \"pyjwt (<3.0.0)\",\n \ - \ \"strictyaml (<2.0.0)\",\n \ - \ \"tqdm (<5.0.0)\",\n \"typing-extensions\ - \ (<5.0.0)\"\n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure\ - \ Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \ - \ \"version\": \"2.14.1\"\n },\n \ - \ \"sha256Digest\": \"50c1619498adf17aaf88c0c8085ca3f4c82862dacc7260b5e1e805832356493b\"\ - \n },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.15.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.15.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-common (<2.0.0,>=1.1)\"\ - ,\n \"azure-storage-blob (<13.0.0,>=12.10.0)\"\ - ,\n \"azure-storage-file-datalake (<13.0.0)\"\ - ,\n \"azure-storage-file-share (<13.0.0)\"\ - ,\n \"colorama (<0.5.0)\",\n \ - \ \"cryptography\",\n \"docker\"\ - ,\n \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure\ - \ (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \ - \ \"pyjwt (<3.0.0)\",\n \ - \ \"strictyaml (<2.0.0)\",\n \"tqdm\ - \ (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools AzureMachineLearningWorkspaces Extension\",\n \"\ - version\": \"2.15.0\"\n },\n \"sha256Digest\"\ - : \"89002fd24b1096dab8dadd02c13930113f7f9044b1632baafe13e63cfda022bf\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.15.1-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.15.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-common (<2.0.0,>=1.1)\"\ - ,\n \"azure-storage-blob (<13.0.0,>=12.10.0)\"\ - ,\n \"azure-storage-file-datalake (<13.0.0)\"\ - ,\n \"azure-storage-file-share (<13.0.0)\"\ - ,\n \"colorama (<0.5.0)\",\n \ - \ \"cryptography\",\n \"docker\"\ - ,\n \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure\ - \ (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \ - \ \"pyjwt (<3.0.0)\",\n \ - \ \"strictyaml (<2.0.0)\",\n \"tqdm\ - \ (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools AzureMachineLearningWorkspaces Extension\",\n \"\ - version\": \"2.15.1\"\n },\n \"sha256Digest\"\ - : \"b195ed8e627c36a34a7aac6f7c261a80714cf7ae9fbfd01981a39119dd1a70a5\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.16.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.16.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-common (<2.0.0,>=1.1)\"\ - ,\n \"azure-mgmt-resource (<23.0.0,>=3.0.0)\"\ - ,\n \"azure-mgmt-resource (<23.0.0,>=3.0.0)\"\ - ,\n \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\"\ - ,\n \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\"\ - ,\n \"azure-storage-blob (<13.0.0,>=12.10.0)\"\ - ,\n \"azure-storage-file-datalake (<13.0.0)\"\ - ,\n \"azure-storage-file-share (<13.0.0)\"\ - ,\n \"colorama (<0.5.0)\",\n \ - \ \"cryptography\",\n \"docker\"\ - ,\n \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure\ - \ (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \ - \ \"pyjwt (<3.0.0)\",\n \ - \ \"strictyaml (<2.0.0)\",\n \"tqdm\ - \ (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools AzureMachineLearningWorkspaces Extension\",\n \"\ - version\": \"2.16.0\"\n },\n \"sha256Digest\"\ - : \"d86047e774ac8c16b3d6eb4490588b527a257a04977dd181cfd06ac7778b6c23\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.17.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.17.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-common (<2.0.0,>=1.1)\"\ - ,\n \"azure-mgmt-resource (<23.0.0,>=3.0.0)\"\ - ,\n \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\"\ - ,\n \"azure-storage-blob (<13.0.0,>=12.10.0)\"\ - ,\n \"azure-storage-file-datalake (<13.0.0)\"\ - ,\n \"azure-storage-file-share (<13.0.0)\"\ - ,\n \"colorama (<0.5.0)\",\n \ - \ \"cryptography\",\n \"docker\"\ - ,\n \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure\ - \ (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \ - \ \"pyjwt (<3.0.0)\",\n \ - \ \"strictyaml (<2.0.0)\",\n \"tqdm\ - \ (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools AzureMachineLearningWorkspaces Extension\",\n \"\ - version\": \"2.17.0\"\n },\n \"sha256Digest\"\ - : \"9870ae83638fdb11fc5de1d5d679e5a88cf6d64363d2f67883ee3eab86a802ec\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.17.1-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.17.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-common (<2.0.0,>=1.1)\"\ - ,\n \"azure-mgmt-resource (<23.0.0,>=3.0.0)\"\ - ,\n \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\"\ - ,\n \"azure-storage-blob (<13.0.0,>=12.10.0)\"\ - ,\n \"azure-storage-file-datalake (<13.0.0)\"\ - ,\n \"azure-storage-file-share (<13.0.0)\"\ - ,\n \"colorama (<0.5.0)\",\n \ - \ \"cryptography\",\n \"docker\"\ - ,\n \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure\ - \ (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \ - \ \"pyjwt (<3.0.0)\",\n \ - \ \"strictyaml (<2.0.0)\",\n \"tqdm\ - \ (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools AzureMachineLearningWorkspaces Extension\",\n \"\ - version\": \"2.17.1\"\n },\n \"sha256Digest\"\ - : \"641cefde40910aca4db48f8fe1c0fda01d8112c04e93530959cf018561e3efcf\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.17.2-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.17.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-common (<2.0.0,>=1.1)\"\ - ,\n \"azure-mgmt-resource (<23.0.0,>=3.0.0)\"\ - ,\n \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\"\ - ,\n \"azure-storage-blob (<13.0.0,>=12.10.0)\"\ - ,\n \"azure-storage-file-datalake (<13.0.0)\"\ - ,\n \"azure-storage-file-share (<13.0.0)\"\ - ,\n \"colorama (<0.5.0)\",\n \ - \ \"cryptography\",\n \"docker\"\ - ,\n \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure\ - \ (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \ - \ \"pyjwt (<3.0.0)\",\n \ - \ \"strictyaml (<2.0.0)\",\n \"tqdm\ - \ (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools AzureMachineLearningWorkspaces Extension\",\n \"\ - version\": \"2.17.2\"\n },\n \"sha256Digest\"\ - : \"6382717a4f9ef486fe5c9af2d2e1b5d1ec8e7c95428f966f67955a5644d462f8\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.18.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.18.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-common (<2.0.0,>=1.1)\"\ - ,\n \"azure-mgmt-resource (<23.0.0,>=3.0.0)\"\ - ,\n \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\"\ - ,\n \"azure-storage-blob (<13.0.0,>=12.10.0)\"\ - ,\n \"azure-storage-file-datalake (<13.0.0)\"\ - ,\n \"azure-storage-file-share (<13.0.0)\"\ - ,\n \"colorama (<0.5.0)\",\n \ - \ \"cryptography\",\n \"docker\"\ - ,\n \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure\ - \ (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \ - \ \"pyjwt (<3.0.0)\",\n \ - \ \"strictyaml (<2.0.0)\",\n \"tqdm\ - \ (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools AzureMachineLearningWorkspaces Extension\",\n \"\ - version\": \"2.18.0\"\n },\n \"sha256Digest\"\ - : \"5a3d044ac51ce7950f71a6b2917ec90d67e029082620b3f02012b8767e3f758c\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.19.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.19.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-common (<2.0.0,>=1.1)\"\ - ,\n \"azure-mgmt-resource (<23.0.0,>=3.0.0)\"\ - ,\n \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\"\ - ,\n \"azure-storage-blob (<13.0.0,>=12.10.0)\"\ - ,\n \"azure-storage-file-datalake (<13.0.0)\"\ - ,\n \"azure-storage-file-share (<13.0.0)\"\ - ,\n \"colorama (<0.5.0)\",\n \ - \ \"cryptography\",\n \"docker\"\ - ,\n \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure\ - \ (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \ - \ \"pyjwt (<3.0.0)\",\n \ - \ \"strictyaml (<2.0.0)\",\n \"tqdm\ - \ (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools AzureMachineLearningWorkspaces Extension\",\n \"\ - version\": \"2.19.0\"\n },\n \"sha256Digest\"\ - : \"cc5d785f5e1fc4bd014b7c4e1543c1c74b10010aa5d0205845afe55042030973\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.19.1-py3-none-any.whl\"\ - ,\n \"filename\": \"ml-2.19.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 5 - Production/Stable\",\n \ - \ \"Intended Audience :: Developers\",\n \"\ - Intended Audience :: System Administrators\",\n \"\ - Environment :: Console\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"Programming Language :: Python :: 3.10\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"description_content_type\": \"text/x-rst\"\ - ,\n \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azuremlsdk@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azureml-examples\"\n \ - \ }\n }\n },\n \ - \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\"\ - ,\n \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"ml\",\n \"\ - run_requires\": [\n {\n \ - \ \"requires\": [\n \"azure-common (<2.0.0,>=1.1)\"\ - ,\n \"azure-mgmt-resource (<23.0.0,>=3.0.0)\"\ - ,\n \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\"\ - ,\n \"azure-storage-blob (<13.0.0,>=12.10.0)\"\ - ,\n \"azure-storage-file-datalake (<13.0.0)\"\ - ,\n \"azure-storage-file-share (<13.0.0)\"\ - ,\n \"colorama (<0.5.0)\",\n \ - \ \"cryptography\",\n \"docker\"\ - ,\n \"isodate\",\n \ - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \ - \ \"marshmallow (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure\ - \ (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \ - \ \"pyjwt (<3.0.0)\",\n \ - \ \"strictyaml (<2.0.0)\",\n \"tqdm\ - \ (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Microsoft Azure Command-Line\ - \ Tools AzureMachineLearningWorkspaces Extension\",\n \"\ - version\": \"2.19.1\"\n },\n \"sha256Digest\"\ - : \"808df1eda155eb202579e88f8cd97ff2bdea8585a5562d84a7819e6d928dea9f\"\n \ - \ }\n ],\n \"mobile-network\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mobile_network-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"mobile_network-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/mobile-network\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"mobile-network\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools MobileNetwork\ - \ Extension.\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"aa356521cae8df8578ef5e0b58274862bc602739bec3ca4385f45a5cc0e77c5a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mobile_network-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"mobile_network-0.1.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/mobile-network\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"mobile-network\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools MobileNetwork\ - \ Extension.\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"2efa62e8df2cab2ba2f3e14f9d5193c88d26f43bf335f77054e332d232b967b0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mobile_network-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"mobile_network-0.2.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/mobile-network\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"mobile-network\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools MobileNetwork\ - \ Extension.\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"1ecaaa16aa6f5d1b23b4a041129767e5ebf5e46ed373c162af2914245c6f348b\"\ - \n }\n ],\n \"monitor-control-service\": [\n \ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/monitor_control_service-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"monitor_control_service-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/monitor-control-service\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"monitor-control-service\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools MonitorClient\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"71604e21a29c5bd84916a890cdf6e09dd7a0623867871d5ac8a0f5c2bed179dd\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/monitor_control_service-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"monitor_control_service-0.2.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/monitor-control-service\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"monitor-control-service\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools MonitorClient\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"a9996879f536220d71b5fe21e366ad22e4898e73761a8013d59981ebae6f0b21\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/monitor_control_service-0.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"monitor_control_service-0.3.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/monitor-control-service\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"monitor-control-service\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools MonitorClient\ - \ Extension\",\n \"version\": \"0.3.0\"\n \ - \ },\n \"sha256Digest\": \"518bd5b37083151b2b29a1f3895b0b150abb3116210d77d43eed121ee8055a60\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/monitor_control_service-0.3.1-py3-none-any.whl\"\ - ,\n \"filename\": \"monitor_control_service-0.3.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/monitor-control-service\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"monitor-control-service\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools MonitorClient\ - \ Extension\",\n \"version\": \"0.3.1\"\n \ - \ },\n \"sha256Digest\": \"bf6b5dc6180748902494ee7cd7c3065b056e386789e168b273ebc92bfde3515a\"\ - \n }\n ],\n \"netappfiles-preview\": [\n \ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/netappfiles_preview-0.3.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"netappfiles_preview-0.3.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.56\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/netappfiles-preview\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"netappfiles-preview\",\n \"run_requires\": [\n\ - \ {\n \"requires\": [\n\ - \ \"msrest\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"Provides a preview for upcoming Azure NetApp Files (ANF) features.\"\ - ,\n \"version\": \"0.3.2\"\n },\n \ - \ \"sha256Digest\": \"d581bfefe3eb7fbceeed12c192ebdf5993fcf04ede7267d053aa416596bd0b53\"\ - \n }\n ],\n \"networkcloud\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-0.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"networkcloud-0.3.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/networkcloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"networkcloud\",\n \ - \ \"summary\": \"Support for Azure Operator Nexus network cloud commands\ - \ based on 2022-12-12-preview API version.\",\n \"version\"\ - : \"0.3.0\"\n },\n \"sha256Digest\": \"29e25ecccbfe5776f20d925c52b70f390c1af7818ed6aa100415fd509c960a9e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-0.4.0-py3-none-any.whl\"\ - ,\n \"filename\": \"networkcloud-0.4.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/networkcloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"networkcloud\",\n \ - \ \"summary\": \"Support for Azure Operator Nexus network cloud commands\ - \ based on 2023-05-01-preview API version.\",\n \"version\"\ - : \"0.4.0\"\n },\n \"sha256Digest\": \"50041fee91ed70f6754058f24aad2e13718ba821493719fd907b7df99bc4ccbb\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-0.4.1-py3-none-any.whl\"\ - ,\n \"filename\": \"networkcloud-0.4.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/networkcloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"networkcloud\",\n \ - \ \"summary\": \"Support for Azure Operator Nexus network cloud commands\ - \ based on 2023-05-01-preview API version.\",\n \"version\"\ - : \"0.4.1\"\n },\n \"sha256Digest\": \"6a7c8154589ae18c2426f77db3c907190eb60b6c6fbeb77d845bf1b487c5e5b2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-1.0.0b1-py3-none-any.whl\"\ - ,\n \"filename\": \"networkcloud-1.0.0b1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/networkcloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"networkcloud\",\n \ - \ \"summary\": \"Support for Azure Operator Nexus network cloud commands\ - \ based on 2023-07-01 API version.\",\n \"version\": \"\ - 1.0.0b1\"\n },\n \"sha256Digest\": \"a938d111bc2f0ad1d3c66f8c1039a4e0a2518ae8d2c6d57e98c6bb5892444e91\"\ - \n }\n ],\n \"new-relic\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/new_relic-1.0.0b1-py3-none-any.whl\"\ - ,\n \"filename\": \"new_relic-1.0.0b1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/new-relic\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"new-relic\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools NewRelic Extension.\"\ - ,\n \"version\": \"1.0.0b1\"\n },\n \ - \ \"sha256Digest\": \"9ce69f1684cea14acba0f2fdb473e47e0a06745e383bb5144954c5e85e416199\"\ - \n }\n ],\n \"next\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/next-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"next-0.1.0-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"next\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Next Extension\",\n \ - \ \"version\": \"0.1.0\"\n },\n \"sha256Digest\"\ - : \"038d673501dd3b3c04314d0f69f01cfdd52e6ca3f44820a45d20dc3dd58317dd\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/next-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"next-0.1.1-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.20.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"next\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Next Extension\",\n \ - \ \"version\": \"0.1.1\"\n },\n \"sha256Digest\"\ - : \"dee069e3a0efafbec8154fbf91ced5cee1f782599a726ac5937b9adc297d3c8a\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/next-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"next-0.1.2-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.20.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"next\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Next Extension\",\n \ - \ \"version\": \"0.1.2\"\n },\n \"sha256Digest\"\ - : \"3bd9bc4ddf96fdb0ce17da57700fd40fc2a7aca56c0277ff95376256baeab4c8\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/next-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"next-0.1.3-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.20.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/next\"\n \ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n \ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"next\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Next Extension\",\n \ - \ \"version\": \"0.1.3\"\n },\n \ - \ \"sha256Digest\": \"83c4e03427f190203e094c14e4f7e79cec989f1277e16b9256bb9fe688aa5e07\"\ - \n }\n ],\n \"nginx\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nginx-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"nginx-0.1.0-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.40.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"nginx\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Nginx Extension\",\n \ - \ \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"a5b017c415c4a030b2c63b2145e6476f789f860a0cb0385b6e336e7572bef73b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nginx-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"nginx-0.1.1-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.40.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"nginx\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Nginx Extension\",\n \ - \ \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"3234129a26043a68e80ee1ae31c36e7ef8b2691a096cd6fc557e3a46fea8170e\"\ - \n }\n ],\n \"notification-hub\": [\n \ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/notification_hub-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"notification_hub-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"notification-hub\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Notification Hub Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"6f8ae57c43f53380db7944d5244121b3b757f996f6ecca394696106fd2c1d875\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/notification_hub-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"notification_hub-0.2.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"notification-hub\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Notification Hub Extension\"\ - ,\n \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"a8d0333e6c8ecc8846dcf162f01ce3d1f7a84cc4a431ec44cb5f48bd498b6d1b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/notification_hub-1.0.0a1-py3-none-any.whl\"\ - ,\n \"filename\": \"notification_hub-1.0.0a1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.49.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/notification-hub\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"notification-hub\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Notification\ - \ Hub Extension\",\n \"version\": \"1.0.0a1\"\n \ - \ },\n \"sha256Digest\": \"a03751b715700e0d18a38e808bfeed164335024c9608c4bfd53aeacc731d1099\"\ - \n }\n ],\n \"nsp\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nsp-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"nsp-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/nsp\"\n \ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n \ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"nsp\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Nsp Extension.\",\n \ - \ \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"14d995890f7f7bf14ce4a92a8d0de0252595d017ead7a49bffecbb741c074fb5\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nsp-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"nsp-0.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/nsp\"\n \ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n \ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"nsp\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Nsp Extension.\",\n \ - \ \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"c6227fc8fcf084c37effb6c22c27b2b4843704e231177776c938e3461ebe6b2d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nsp-0.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"nsp-0.2.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/nsp\"\n \ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n \ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"nsp\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Nsp Extension.\",\n \ - \ \"version\": \"0.2.1\"\n },\n \ - \ \"sha256Digest\": \"3aaf9a245ff82bf8212fd28767d61089ffa13285447964f97e7b8aa8547509ac\"\ - \n }\n ],\n \"offazure\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/offazure-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"offazure-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/offazure\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"offazure\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMigrateV2 Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"1918817070ae9e0ceef57b93366d18b6e8bf577fd632e7da999e1e2abbb53656\"\ - \n }\n ],\n \"orbital\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/orbital-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"orbital-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.39.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/orbital\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"orbital\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Orbital Extension.\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"4259fb8ff560440d63251cc9721bb3f2283452f2399134514611f886fa350f37\"\ - \n }\n ],\n \"palo-alto-networks\": [\n \ - \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/palo_alto_networks-1.0.0b1-py3-none-any.whl\"\ - ,\n \"filename\": \"palo_alto_networks-1.0.0b1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.50.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/palo-alto-networks\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"palo-alto-networks\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools PaloAltoNetworks\ - \ Extension.\",\n \"version\": \"1.0.0b1\"\n \ - \ },\n \"sha256Digest\": \"6c6856f9af7e57202a063c072e23b88bc6d337a5a7440c43cc9e01fa6833533e\"\ - \n }\n ],\n \"partnercenter\": [\n {\n\ - \ \"downloadUrl\": \"https://github.com/Azure/partnercenter-cli-extension/releases/download/v0.1.1-alpha/partnercenter-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"partnercenter-0.1.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"2.43.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/partnercenter-cli-extension/tree/main/partnercenter\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"partnercenter\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-storage-blob\",\n \ - \ \"docker\",\n \"pydantic\",\n\ - \ \"requests\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure CLI Extension for Partner Center\",\n\ - \ \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"39a510a25a2805f188909d0b24139cebbce36f734ee00b7b067851fe777ef75f\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/partnercenter-cli-extension/releases/download/v0.1.2-alpha/partnercenter-0.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"partnercenter-0.1.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"2.43.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/partnercenter-cli-extension/tree/main/partnercenter\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"partnercenter\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-storage-blob\",\n \ - \ \"docker\",\n \"pydantic\",\n\ - \ \"requests\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure CLI Extension for Partner Center\",\n\ - \ \"version\": \"0.1.2\"\n },\n \ - \ \"sha256Digest\": \"a2e4ef513b74c138c3c445c6c494eb9e4677338f53e1b5a634a280b57bd70fc5\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/partnercenter-cli-extension/releases/download/v0.2.3-alpha/partnercenter-0.2.3-py3-none-any.whl\"\ - ,\n \"filename\": \"partnercenter-0.2.3-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/partnercenter-cli-extension/tree/main/partnercenter\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"partnercenter\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-storage-blob\",\n \ - \ \"docker\",\n \"pydantic\",\n\ - \ \"requests\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure CLI Extension for Partner Center\",\n\ - \ \"version\": \"0.2.3\"\n },\n \ - \ \"sha256Digest\": \"5e364c5f375e9cdbbd7117c571d45ef434648c0f68b894fd1ebcf6cec26e4798\"\ - \n },\n {\n \"downloadUrl\": \"https://github.com/Azure/partnercenter-cli-extension/releases/download/v0.2.4-alpha/partnercenter-0.2.4-py3-none-any.whl\"\ - ,\n \"filename\": \"partnercenter-0.2.4-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/partnercenter-cli-extension/tree/main/partnercenter\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"partnercenter\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-storage-blob\",\n \ - \ \"docker\",\n \"pydantic (<2)\"\ - ,\n \"requests\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure CLI Extension for Partner Center\",\n\ - \ \"version\": \"0.2.4\"\n },\n \ - \ \"sha256Digest\": \"daca7562e92ddeb0195d2e85bdad22f0873010359ada146b1bfd8e415244cac9\"\ - \n }\n ],\n \"peering\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/peering-0.1.0rc2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"peering-0.1.0rc2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"peering\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Peering Extension\",\n \ - \ \"version\": \"0.1.0rc2\"\n },\n \"\ - sha256Digest\": \"1b73d60427e5e84971e244a5884b7f14e0e05e65792e9ecc7483695d1b596992\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/peering-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"peering-0.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"peering\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools PeeringManagementClient Extension\"\ - ,\n \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"dd301c22107f961692a4acdbb5a98d28a7e86e7fb8619f2322884a2bc5507241\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/peering-0.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"peering-0.2.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/peering\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"peering\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools PeeringManagementClient\ - \ Extension\",\n \"version\": \"0.2.1\"\n \ - \ },\n \"sha256Digest\": \"b068c12b47f17304af51431a2ae975339b7d4601a180e83916efae73d7c42600\"\ - \n }\n ],\n \"portal\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/portal-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"portal-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"portal\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Portal Extension\",\n \ - \ \"version\": \"0.1.0\"\n },\n \"sha256Digest\"\ - : \"89fdc138db22055fc09cf30a46050205a9e842d8fe386a3d8773ea563b074083\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/portal-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"portal-0.1.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"portal\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools Portal Extension\",\n \ - \ \"version\": \"0.1.1\"\n },\n \"sha256Digest\"\ - : \"a3fc71fd6f0390850a60947cc1bff31d6346fc3f79e3ac8947add577c10c31a3\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/portal-0.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"portal-0.1.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/portal\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"portal\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Portal Extension\",\n\ - \ \"version\": \"0.1.2\"\n },\n \ - \ \"sha256Digest\": \"0e09b913c7b691496f46a131e608dcc1d37fc887c900d16ac87ec6a4c1e0b646\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/portal-0.1.3-py3-none-any.whl\"\ - ,\n \"filename\": \"portal-0.1.3-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/portal\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"portal\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Portal Extension\",\n\ - \ \"version\": \"0.1.3\"\n },\n \ - \ \"sha256Digest\": \"3c3ebe23f59db5f2d286ca52cf8cfbbc5983ce8073622de11a35dab95800a996\"\ - \n }\n ],\n \"powerbidedicated\": [\n \ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/powerbidedicated-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"powerbidedicated-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"3.0.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development Status ::\ - \ 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"powerbidedicated\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools PowerBIDedicated Extension\"\ - ,\n \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"a7373b5005814f9d6d0151622c8356b37758a7548aa2fb8cad3ddc4368c5e05f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/powerbidedicated-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"powerbidedicated-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"3.0.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development Status ::\ - \ 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/powerbidedicated\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"powerbidedicated\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools PowerBIDedicated\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"127cb7b69076d07254aee3b57720409455e601ad431d3e12d713d886578ce1bf\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/powerbidedicated-0.2.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"powerbidedicated-0.2.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"3.0.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development Status ::\ - \ 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/powerbidedicated\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"powerbidedicated\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools PowerBIDedicated\ - \ Extension\",\n \"version\": \"0.2.1\"\n \ - \ },\n \"sha256Digest\": \"be1b824d4e4561ccfccebba9453d27a4542e6d4e6471eabe3def15bb1b35ca6f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/powerbidedicated-0.2.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"powerbidedicated-0.2.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/powerbidedicated\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"powerbidedicated\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools PowerBIDedicated\ - \ Extension\",\n \"version\": \"0.2.2\"\n \ - \ },\n \"sha256Digest\": \"2f87e7006a1670a8c7ec9cce7aa90adaa55871f183e7fedc44509eaea40546fa\"\ - \n }\n ],\n \"providerhub\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/providerhub-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"providerhub-0.1.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/providerhub\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"providerhub\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Providerhub Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"9385d61fe18f10c379e7a7c57a1ded34dd0f5b15bcf021777e4d51d288b703fe\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/providerhub-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"providerhub-0.2.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/providerhub\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"providerhub\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools ProviderHub Extension\"\ - ,\n \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"9cda8fed546254987e5c5f872b4119105796c89de8d65d385638dac155bdf01e\"\ - \n }\n ],\n \"purview\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/purview-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"purview-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/purview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"purview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools PurviewManagementClient\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"706cc2550fbd07b8b676345c2f26c5ba66550905bc8ec224c6c4e5637c497266\"\ - \n }\n ],\n \"quantum\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.5.1\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"quantum\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"ac71362fb4834e02f26644403b4aac166def6488474e4f201ce3243b12b2424f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.5.1\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"quantum\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum Extension\"\ - ,\n \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"49f14768df82cf63f8be1a4bdc69ecd531149c7603f05d1951431c006dcc3660\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.3.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.5.1\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"quantum\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum Extension\"\ - ,\n \"version\": \"0.3.0\"\n },\n \ - \ \"sha256Digest\": \"2564b05153b85eab96b58a2f8f3211241d6e07bdbe9a13f8feb74d09e1b80832\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.4.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.4.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.5.1\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"quantum\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum Extension\"\ - ,\n \"version\": \"0.4.0\"\n },\n \ - \ \"sha256Digest\": \"90b537ba647b0eecda70ef8cbe4823d4199429f4ae436808434180d715448769\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.5.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.5.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.23.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"quantum\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum Extension\"\ - ,\n \"version\": \"0.5.0\"\n },\n \ - \ \"sha256Digest\": \"257dfba42b6505dfa66721ddba9197da7f769f2e26d7c4bba9bcc729a72e49b7\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.6.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.6.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.23.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"quantum\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum Extension\"\ - ,\n \"version\": \"0.6.0\"\n },\n \ - \ \"sha256Digest\": \"407d45555dc239d16882b99d52634d2726057ffbe404e008d6181a5cb0f212cd\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.6.1-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.6.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.23.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"quantum\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum Extension\"\ - ,\n \"version\": \"0.6.1\"\n },\n \ - \ \"sha256Digest\": \"5306a838f3c1c36d80cf7945ee8f74d472a6d1e19c45e47f233b22671953edfb\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.7.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.7.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.23.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"quantum\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum Extension\"\ - ,\n \"version\": \"0.7.0\"\n },\n \ - \ \"sha256Digest\": \"e3658e4549ce96f262d60c3ae357c3c057b8678cd01060a6eea0cd715a6d2e45\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.8.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.8.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.23.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"quantum\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum Extension\"\ - ,\n \"version\": \"0.8.0\"\n },\n \ - \ \"sha256Digest\": \"cab7430782efaf49e865f6c217b911e27b3868ec5df53e70614aa256b3ba91ca\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.9.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.9.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.23.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"quantum\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum Extension\"\ - ,\n \"version\": \"0.9.0\"\n },\n \ - \ \"sha256Digest\": \"214d6303c3381a8a328a15ca3bb8f77f68c36cf71d83cdaa41be87b2af6e28fe\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.10.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.10.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.23.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"quantum\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum Extension\"\ - ,\n \"version\": \"0.10.0\"\n },\n \ - \ \"sha256Digest\": \"c280a1eda5a9eee853239cac1ac2c610d159d59be5ac29fa7d5a4a1a3d7cbbde\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.11.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.11.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.23.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"quantum\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum Extension\"\ - ,\n \"version\": \"0.11.0\"\n },\n \ - \ \"sha256Digest\": \"96d85f1c7675e4d8a42384de348cad66e80343b6ae26142ebdb19d753c45fc2e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.12.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.12.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.23.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"quantum\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum Extension\"\ - ,\n \"version\": \"0.12.0\"\n },\n \ - \ \"sha256Digest\": \"ffc62c0663843522a3439acf4c682f9287849d5b3efcf2c4fd721266bfecfe96\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.13.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.13.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.23.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"quantum\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum Extension\"\ - ,\n \"version\": \"0.13.0\"\n },\n \ - \ \"sha256Digest\": \"d37a85117a1b0989c1ceba8bbb571c777b626eabf9ce14161617837dbfeb067e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.14.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.14.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.23.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"quantum\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum Extension\"\ - ,\n \"version\": \"0.14.0\"\n },\n \ - \ \"sha256Digest\": \"bad894820d83dceabf1805498ad98d1dc196fe8e1c6907136d60cbea30fee816\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.15.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.15.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.23.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"quantum\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum Extension\"\ - ,\n \"version\": \"0.15.0\"\n },\n \ - \ \"sha256Digest\": \"4ca37f0e8b7b1b9b32ed35b127600f5b1ea2390b5dfc5901c7dbce5fef631278\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.16.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.16.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.23.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"quantum\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum Extension\"\ - ,\n \"version\": \"0.16.0\"\n },\n \ - \ \"sha256Digest\": \"d8d4650f5f4b385c7612598301db487ffd2a09b59119453760ca9ab1319f1363\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.17.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.17.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.23.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"quantum\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum Extension\"\ - ,\n \"version\": \"0.17.0\"\n },\n \ - \ \"sha256Digest\": \"219065a730c5caa44b07979d56211e24e498a4cfb2d1d50e2d86239254b4d945\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.18.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.18.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.41.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"quantum\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-storage-blob (~=12.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum\ - \ Extension\",\n \"version\": \"0.18.0\"\n \ - \ },\n \"sha256Digest\": \"7eddef419f89623b2f4d168be9c60c2ead8ede385fbff1c23671823260fd8569\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.19.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quantum-0.19.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.41.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"que-contacts@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation,\ - \ Quantum Team\",\n \"role\": \"author\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"quantum\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-storage-blob (~=12.14.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum\ - \ Extension\",\n \"version\": \"0.19.0\"\n \ - \ },\n \"sha256Digest\": \"96c60aff31dc8153e2c8a2f72ac5a8a4b1e0810b37a1f0b0fdd3d79c4263517e\"\ - \n }\n ],\n \"qumulo\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/qumulo-1.0.0-py3-none-any.whl\"\ - ,\n \"filename\": \"qumulo-1.0.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.48.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/qumulo\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"qumulo\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Qumulo Extension.\",\n\ - \ \"version\": \"1.0.0\"\n },\n \ - \ \"sha256Digest\": \"9973f580a3fc20cc2fe5558a1cfdc10ddfc6567982d12f37008bbfec7aafcf9b\"\ - \n }\n ],\n \"quota\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quota-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"quota-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quota\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"quota\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureQuotaExtensionAPI\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"f336a9499c951ba012c9f68ed7887af63b053ed1585df4bbdef88ddf9e0d6805\"\ - \n }\n ],\n \"rdbms-connect\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"rdbms_connect-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"rdbms-connect\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"mycli (==1.22.2)\",\n \ - \ \"pgcli (==3.0.0)\",\n \"setproctitle\ - \ (==1.2.2)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Support for testing\ - \ connection to Azure Database for MySQL & PostgreSQL servers.\",\n \ - \ \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"fd80779e01d5afa74da88dda0339b9068e5ca3390d2dea78b034002c62b713b4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"rdbms_connect-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"rdbms-connect\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"mycli (==1.22.2)\",\n \ - \ \"pgcli (==3.0.0)\",\n \"setproctitle\ - \ (==1.2.2)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Support for testing\ - \ connection to Azure Database for MySQL & PostgreSQL servers.\",\n \ - \ \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"83e3110a82f414274564d97ae5ba1088557376d5cc68cc358152135c283acf15\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"rdbms_connect-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"rdbms-connect\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"mycli (==1.22.2)\",\n \ - \ \"pgcli (==3.0.0)\",\n \"setproctitle\ - \ (==1.2.2)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Support for testing\ - \ connection to Azure Database for MySQL & PostgreSQL servers.\",\n \ - \ \"version\": \"0.1.2\"\n },\n \ - \ \"sha256Digest\": \"c738cd82edc1c9ad31ba0250eab982ef344d01e50e11dfec9c5b96ccdd5d1b6b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"rdbms_connect-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"rdbms-connect\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"mycli (==1.22.2)\",\n \ - \ \"pgcli (==3.0.0)\",\n \"setproctitle\ - \ (==1.2.2)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Support for testing\ - \ connection to Azure Database for MySQL & PostgreSQL servers.\",\n \ - \ \"version\": \"0.1.3\"\n },\n \ - \ \"sha256Digest\": \"5a6652ecacdc5b5c77dd9225abb30e5fb1160bc491a6ac3083327e81cc60f90e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-0.1.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"rdbms_connect-0.1.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"rdbms-connect\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"mycli (==1.22.2)\",\n \ - \ \"pgcli (==3.0.0)\",\n \"setproctitle\ - \ (==1.2.2)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Support for testing\ - \ connection to Azure Database for MySQL & PostgreSQL servers.\",\n \ - \ \"version\": \"0.1.4\"\n },\n \ - \ \"sha256Digest\": \"674a880f508d649f75d426c5b9700f7283079c1b9de2e5bccf31edbce907b838\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-1.0.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"rdbms_connect-1.0.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"rdbms-connect\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"mycli (==1.22.2)\",\n \ - \ \"pgcli (==3.0.0)\",\n \"setproctitle\ - \ (==1.2.2)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Support for testing\ - \ connection to Azure Database for MySQL & PostgreSQL servers.\",\n \ - \ \"version\": \"1.0.0\"\n },\n \ - \ \"sha256Digest\": \"c1830f07c8829025597bf60db45b04c6b854c76d598235e71e6c7ff9626ba100\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-1.0.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"rdbms_connect-1.0.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.19.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"rdbms-connect\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"mycli (==1.22.2)\",\n \ - \ \"pgcli (==3.0.0)\",\n \"setproctitle\ - \ (==1.2.2)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Support for testing\ - \ connection to Azure Database for MySQL & PostgreSQL servers.\",\n \ - \ \"version\": \"1.0.1\"\n },\n \ - \ \"sha256Digest\": \"c13bd245524b6c0f8dab0b7c80e51d710934f12f1f68fbc74614805aeb1429f7\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-1.0.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"rdbms_connect-1.0.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.19.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/rdbms-connect\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"rdbms-connect\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"mycli (==1.22.2)\",\n \ - \ \"pgcli (==3.0.0)\",\n \"setproctitle\ - \ (~=1.2.2)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Support for testing\ - \ connection to Azure Database for MySQL & PostgreSQL servers.\",\n \ - \ \"version\": \"1.0.2\"\n },\n \ - \ \"sha256Digest\": \"e5fc0b600c652c9b5ef3f9ec55fde9756a22b0dd9ac17b4ca4efc68339491b58\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-1.0.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"rdbms_connect-1.0.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.19.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/rdbms-connect\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"rdbms-connect\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"mycli (==1.22.2)\",\n \ - \ \"pgcli (==3.0.0)\",\n \"setproctitle\ - \ (~=1.2.2)\"\n ]\n }\n\ - \ ],\n \"summary\": \"Support for testing\ - \ connection to Azure Database for MySQL & PostgreSQL servers.\",\n \ - \ \"version\": \"1.0.3\"\n },\n \ - \ \"sha256Digest\": \"fadc2e3b684636448f1f4b6533e54dc30381984c125dc771e605a0410d26dcbe\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-1.0.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"rdbms_connect-1.0.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.19.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/rdbms-connect\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"rdbms-connect\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"mycli (==1.26.1)\",\n \ - \ \"pgcli (==3.4.1)\",\n \"psycopg2\ - \ (==2.9.3)\",\n \"setproctitle (~=1.2.2)\"\ - \n ]\n }\n \ - \ ],\n \"summary\": \"Support for testing connection\ - \ to Azure Database for MySQL & PostgreSQL servers.\",\n \ - \ \"version\": \"1.0.4\"\n },\n \"sha256Digest\"\ - : \"8dc15a70881c71f21ba000854960b1be851a057b403dc8de156b73883efb543d\"\n \ - \ }\n ],\n \"redisenterprise\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"redisenterprise-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/redisenterprise\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"redisenterprise\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools RedisEnterpriseManagementClient\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"22b1965e5a148ce4eb2d45bf48880caa21becb165810b1b93658886cd5e39515\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"redisenterprise-0.1.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/redisenterprise\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"redisenterprise\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools RedisEnterpriseManagementClient\ - \ Extension\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"f0662c4091e8c4e87069f93db23b5f057f2862f78d038a5f709f16f8d37d524f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-0.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"redisenterprise-0.1.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/redisenterprise\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"redisenterprise\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools RedisEnterpriseManagementClient\ - \ Extension\",\n \"version\": \"0.1.2\"\n \ - \ },\n \"sha256Digest\": \"db8c673e2e29498e9f54f3392a5305952c273e7c24d293d96c0708dd3e90d5fe\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-0.1.3-py3-none-any.whl\"\ - ,\n \"filename\": \"redisenterprise-0.1.3-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.45.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.7\"\ - ,\n \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/redisenterprise\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"redisenterprise\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools RedisEnterprise\ - \ Extension.\",\n \"version\": \"0.1.3\"\n \ - \ },\n \"sha256Digest\": \"744ef0651a7d4c734675d3d567d1162d1dd1986e5274c62613387fd93d0efe6c\"\ - \n }\n ],\n \"reservation\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/reservation-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"reservation-0.2.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.41.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 2\",\n \"Programming Language :: Python :: 2.7\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/reservation\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"reservation\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Reservation Extension\"\ - ,\n \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"8cea59293bb54d3ae741035690c67b2aa6925b7f79e71e5b1ec1b152e8e9eb86\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/reservation-0.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"reservation-0.3.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.45.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 2\",\n \"Programming Language :: Python :: 2.7\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/reservation\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"reservation\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Reservation Extension\"\ - ,\n \"version\": \"0.3.0\"\n },\n \ - \ \"sha256Digest\": \"548a8d6c935b97b93f4ea24f7f0470f0ebd8c0b983d91e3bc5234d3a191ed666\"\ - \n }\n ],\n \"resource-graph\": [\n {\n\ - \ \"downloadUrl\": \"https://files.pythonhosted.org/packages/bd/c1/3df175a9a6a0c6aeae1ca1a7499955d75dd03452b5ba75f6df01a02b7c7f/resource_graph-1.0.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"resource_graph-1.0.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.45\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"ilidemi@microsoft.com\"\ - ,\n \"name\": \"Ilia Demianenko\",\n \ - \ \"role\": \"author\"\n \ - \ },\n {\n \ - \ \"email\": \"earc@microsoft.com\",\n \ - \ \"name\": \"Azure Resource Graph\",\n \ - \ \"role\": \"maintainer\"\n \ - \ }\n ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-graph\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"resource-graph\",\n \ - \ \"summary\": \"Support for querying Azure resources with Resource\ - \ Graph.\",\n \"version\": \"1.0.0\"\n },\n\ - \ \"sha256Digest\": \"76f10264a7c6d78664c34e73d390565ce66e639fd39ffdfad149da8fc499112d\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/resource_graph-1.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"resource_graph-1.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"description_content_type\": \"text/markdown\",\n \ - \ \"extensions\": {\n \"python.details\": {\n \ - \ \"contacts\": [\n \ - \ {\n \"email\": \"ilidemi@microsoft.com\"\ - ,\n \"name\": \"Ilia Demianenko\",\n \ - \ \"role\": \"author\"\n \ - \ },\n {\n \ - \ \"email\": \"earc@microsoft.com\",\n \ - \ \"name\": \"Azure Resource Graph\",\n \ - \ \"role\": \"maintainer\"\n \ - \ }\n ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-graph\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"resource-graph\",\n \ - \ \"summary\": \"Support for querying Azure resources with Resource\ - \ Graph.\",\n \"version\": \"1.1.0\"\n },\n\ - \ \"sha256Digest\": \"1eaef63df8a22666f88f322829f3470efb790e36d35376c1705b40fb03464549\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/resource_graph-2.0.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"resource_graph-2.0.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.21.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"description_content_type\"\ - : \"text/markdown\",\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"ilidemi@microsoft.com\",\n \ - \ \"name\": \"Ilia Demianenko\",\n \ - \ \"role\": \"author\"\n },\n \ - \ {\n \"email\": \"\ - earc@microsoft.com\",\n \"name\": \"Azure\ - \ Resource Graph\",\n \"role\": \"maintainer\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-graph\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"resource-graph\",\n \ - \ \"summary\": \"Support for querying Azure resources with Resource\ - \ Graph.\",\n \"version\": \"2.0.0\"\n },\n\ - \ \"sha256Digest\": \"3bda3548bd742ad24b84d5a81f58aaf47f0d7b97f4a04d5a5b405715f850a31c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/resource_graph-2.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"resource_graph-2.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.22.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \"Programming\ - \ Language :: Python :: 3.7\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"description_content_type\"\ - : \"text/markdown\",\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\"\ - : [\n {\n \ - \ \"email\": \"ilidemi@microsoft.com\",\n \ - \ \"name\": \"Ilia Demianenko\",\n \ - \ \"role\": \"author\"\n },\n \ - \ {\n \"email\": \"\ - earc@microsoft.com\",\n \"name\": \"Azure\ - \ Resource Graph\",\n \"role\": \"maintainer\"\ - \n }\n ],\n \ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-graph\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"resource-graph\",\n \ - \ \"summary\": \"Support for querying Azure resources with Resource\ - \ Graph.\",\n \"version\": \"2.1.0\"\n },\n\ - \ \"sha256Digest\": \"62c81e3d62ce60c5a0a485829d00bdb0c733145ee93fb6098c14e3b27ee27c40\"\ - \n }\n ],\n \"resource-mover\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/resource_mover-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"resource_mover-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-mover\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"resource-mover\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools ResourceMoverServiceAPI\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"f86ecfcde11e6016da9b107e191b1feaba6896f395d989e5962c6fe6ac34c593\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/resource_mover-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"resource_mover-0.1.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-mover\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"resource-mover\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools ResourceMoverServiceAPI\ - \ Extension\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"dee4f576aa3902497762f0d3582fea9e7846de6cfad48575798c9349a45c20a0\"\ - \n }\n ],\n \"sap-hana\": [\n {\n \ - \ \"downloadUrl\": \"https://github.com/Azure/azure-hanaonazure-cli-extension/releases/download/0.6.5/sap_hana-0.6.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"sap_hana-0.6.5-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.0.46\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 2\",\n \"Programming Language :: Python :: 2.7\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-hanaonazure-cli-extension\"\n \ - \ }\n }\n },\n\ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"sap-hana\",\n \ - \ \"summary\": \"Additional commands for working with SAP HanaOnAzure instances.\"\ - ,\n \"version\": \"0.6.5\"\n },\n \ - \ \"sha256Digest\": \"b4554c125f3a0eb5c891cec396e7705f6e91d4d81789acef20e3c4d172fa4543\"\ - \n }\n ],\n \"scenario-guide\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scenario_guide-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"scenario_guide-0.1.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.20.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scenario-guide\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"scenario-guide\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Scenario Guidance\ - \ Extension\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"4264b48b4b980334488a3fdb3bc43241e828a2742c35ce48985f3bebf019e8f8\"\ - \n }\n ],\n \"scheduled-query\": [\n {\n\ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"scheduled_query-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"scheduled-query\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Scheduled_query Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"5529213e41055f70c53407498b618c7d48cea70a0ce0aca069e0dd9bb818f549\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"scheduled_query-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"scheduled-query\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Scheduled_query Extension\"\ - ,\n \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"d9cba80c47b0b8b3e3ad86a257eb53598611698efab6687a11f81c2b036b1083\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.2.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"scheduled_query-0.2.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"scheduled-query\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Scheduled_query Extension\"\ - ,\n \"version\": \"0.2.1\"\n },\n \ - \ \"sha256Digest\": \"f7a7ee6f9c11260c8cfff54f36ec68b2a3b235767ceb8ff281280523f2eda696\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.2.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"scheduled_query-0.2.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"scheduled-query\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Scheduled_query Extension\"\ - ,\n \"version\": \"0.2.2\"\n },\n \ - \ \"sha256Digest\": \"17f2dfaa317f735eee708b4365e107a29b3fb796f8d6a9505388ec30c73bf930\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.3.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"scheduled_query-0.3.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.20.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"scheduled-query\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Scheduled_query Extension\"\ - ,\n \"version\": \"0.3.0\"\n },\n \ - \ \"sha256Digest\": \"ec2220289b5715676e169baeb457322cceade980a36c9034eb58206371703892\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.3.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"scheduled_query-0.3.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.20.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"scheduled-query\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Scheduled_query Extension\"\ - ,\n \"version\": \"0.3.1\"\n },\n \ - \ \"sha256Digest\": \"0535be22855f9ab829421fc8f8d47704a0f7e2ea1067ea57d486e9b81a71c5cd\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.4.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"scheduled_query-0.4.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.20.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"scheduled-query\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Scheduled_query Extension\"\ - ,\n \"version\": \"0.4.0\"\n },\n \ - \ \"sha256Digest\": \"9228691ea2baa13b11473c8ff9916f8bd1fa39fae33ee4386648d9bffb239617\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.5.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"scheduled_query-0.5.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.20.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"scheduled-query\",\n \"\ - summary\": \"Microsoft Azure Command-Line Tools Scheduled_query Extension\"\ - ,\n \"version\": \"0.5.0\"\n },\n \ - \ \"sha256Digest\": \"ee4c54e1d96ac2bd33f2cf148e7cc1eac978afe842dc5b49be24bd2c24c6d13a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.5.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"scheduled_query-0.5.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scheduled-query\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"scheduled-query\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Scheduled_query\ - \ Extension\",\n \"version\": \"0.5.1\"\n \ - \ },\n \"sha256Digest\": \"34b68f6a3edbcd703c17f5d384e50e1dee71bc2f05e8aa80862d46afef8c570c\"\ - \n }\n ],\n \"scvmm\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-0.1.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"scvmm-0.1.4-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"scvmm\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools SCVMM Extension\",\n \ - \ \"version\": \"0.1.4\"\n },\n \ - \ \"sha256Digest\": \"22aaf76e9bb066f279683f451c45d1b927e288a000879a21c728891f463c9e94\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-0.1.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"scvmm-0.1.5-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scvmm\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"scvmm\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools SCVMM Extension\",\n \ - \ \"version\": \"0.1.5\"\n },\n \ - \ \"sha256Digest\": \"53c40fbc78ed7826ea11e64a79dfc8a49112d5c837417b3032fbe8c69b84f0e3\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-0.1.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"scvmm-0.1.6-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scvmm\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"scvmm\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"pwinput\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools SCVMM Extension\",\n \ - \ \"version\": \"0.1.6\"\n },\n \"sha256Digest\"\ - : \"5c02543fff1da970b523055d7c97012bdc40440c5929ade899ccfcf397c37736\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-0.1.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"scvmm-0.1.7-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scvmm\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"scvmm\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools SCVMM Extension\",\n \ - \ \"version\": \"0.1.7\"\n },\n \ - \ \"sha256Digest\": \"e462aa30bbca50d140a70a80db81cb9f661ae11bc7a29435b7dc57aa32756c53\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-0.1.8-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"scvmm-0.1.8-py2.py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scvmm\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"scvmm\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools SCVMM Extension\",\n \ - \ \"version\": \"0.1.8\"\n },\n \ - \ \"sha256Digest\": \"167a9a333afebbb7b211b1f9a60d68f33bee28965653894c9193676f102c5a38\"\ - \n }\n ],\n \"self-help\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/self_help-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"self_help-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/self-help\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"self-help\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools SelfHelp Extension.\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"24e94291acb3735073d3372cc11459577c6a2649bf3b34f10ae66f29964ff4ff\"\ - \n }\n ],\n \"sentinel\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/sentinel-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"sentinel-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/sentinel\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"sentinel\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools SecurityInsights Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"0c0de10af8cc7c91704dc29afa2bc178f18bf4e28612d6d0c5d7c594bd05d4c9\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/sentinel-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"sentinel-0.1.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.11.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/sentinel\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"sentinel\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools SecurityInsights Extension\"\ - ,\n \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"407f23c06a7bd6e1200f108abcd0127904334d9813ccae8df8fc3e63b3eaa97f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/sentinel-0.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"sentinel-0.1.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.11.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/sentinel\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"sentinel\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools SecurityInsights Extension\"\ - ,\n \"version\": \"0.1.2\"\n },\n \ - \ \"sha256Digest\": \"978d4d15a01124d46dd310918c428bba1792a58716aa0511f2fdbfec2176f7e2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/sentinel-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"sentinel-0.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/securityinsight\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"sentinel\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Sentinel Extension.\"\ - ,\n \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"5511544b4e342b03a4a4263617c603d87442ad5179ce9d8c0d1fd10915f93b7a\"\ - \n }\n ],\n \"serial-console\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"serial_console-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serialconsole\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"serial-console\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"websocket-client (~=0.56.0)\"\n \ - \ ]\n }\n ],\n\ - \ \"summary\": \"Microsoft Azure Command-Line Tools for\ - \ Serial Console Extension\",\n \"version\": \"0.1.0\"\n\ - \ },\n \"sha256Digest\": \"39317e5d4ecc6add26a624a6fa0d48344cfb6b3faaefb6ccbdcb30de9d35fb50\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"serial_console-0.1.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serialconsole\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"serial-console\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"websocket-client (~=0.56.0)\"\n \ - \ ]\n }\n ],\n\ - \ \"summary\": \"Microsoft Azure Command-Line Tools for\ - \ Serial Console Extension\",\n \"version\": \"0.1.1\"\n\ - \ },\n \"sha256Digest\": \"082f315c9cdf5887987f12d6e27645101ea8318003a8d60c24dc630c861ebc97\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-0.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"serial_console-0.1.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/serialconsole\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"serial-console\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"websocket-client (~=0.56.0)\"\n \ - \ ]\n }\n ],\n\ - \ \"summary\": \"Microsoft Azure Command-Line Tools for\ - \ Serial Console Extension\",\n \"version\": \"0.1.2\"\n\ - \ },\n \"sha256Digest\": \"51493fe5617f90d06f5e4493b81a85b5d664f80c264941d4e6f5ca5f3473dc57\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-0.1.3-py3-none-any.whl\"\ - ,\n \"filename\": \"serial_console-0.1.3-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/serialconsole\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"serial-console\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"websocket-client (~=0.56.0)\"\n \ - \ ]\n }\n ],\n\ - \ \"summary\": \"Microsoft Azure Command-Line Tools for\ - \ Serial Console Extension\",\n \"version\": \"0.1.3\"\n\ - \ },\n \"sha256Digest\": \"66ed2625bac7ab1e73300a37eb76d856f25673e398ccdbe6939f0b0d10e4770e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-0.1.4-py3-none-any.whl\"\ - ,\n \"filename\": \"serial_console-0.1.4-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/serialconsole\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"serial-console\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"websocket-client (==1.3.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools for\ - \ Serial Console Extension\",\n \"version\": \"0.1.4\"\n\ - \ },\n \"sha256Digest\": \"312bd981dc2a9c2661bae6056333d0d74292023ffaeb5be26a4be9c5ec233e50\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-0.1.5-py3-none-any.whl\"\ - ,\n \"filename\": \"serial_console-0.1.5-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/serialconsole\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"serial-console\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"websocket-client (==1.3.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools for\ - \ Serial Console Extension\",\n \"version\": \"0.1.5\"\n\ - \ },\n \"sha256Digest\": \"8c65ea10b0c336106f3c9c862e50b327c044b8be90bf6075771cc98973aa99f8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-0.1.6-py3-none-any.whl\"\ - ,\n \"filename\": \"serial_console-0.1.6-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/serial-console\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"serial-console\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"websocket-client (==1.3.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools for\ - \ Serial Console Extension\",\n \"version\": \"0.1.6\"\n\ - \ },\n \"sha256Digest\": \"2b20fce597a655c1016ab4d3b2f569267adf1536ed34481063e56c22f407381a\"\ - \n }\n ],\n \"serviceconnector-passwordless\": [\n\ - \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"serviceconnector_passwordless-0.3.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"serviceconnector-passwordless\",\n \"run_requires\"\ - : [\n {\n \"requires\":\ - \ [\n \"PyMySQL (==1.0.2)\",\n \ - \ \"azure-core\",\n \"azure-mgmt-servicelinker\ - \ (==1.2.0b1)\",\n \"psycopg2-binary (==2.9.5)\"\ - ,\n \"pyodbc (==4.0.35)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless\ - \ Extension\",\n \"version\": \"0.3.0\"\n \ - \ },\n \"sha256Digest\": \"5364760a136655207f5f970431882d5d6c844818e43fbb81ffb311d19a21700a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.1-py3-none-any.whl\"\ - ,\n \"filename\": \"serviceconnector_passwordless-0.3.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"serviceconnector-passwordless\",\n \"run_requires\"\ - : [\n {\n \"requires\":\ - \ [\n \"PyMySQL (==1.0.2)\",\n \ - \ \"azure-core\",\n \"azure-mgmt-servicelinker\ - \ (==1.2.0b1)\",\n \"psycopg2-binary (==2.9.5)\"\ - ,\n \"pyodbc (==4.0.35)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless\ - \ Extension\",\n \"version\": \"0.3.1\"\n \ - \ },\n \"sha256Digest\": \"d61dd33d4fe9542c506a91a9f7876bcb4dd14e27ffe0aeae5f1cbf76eda93413\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.2-py3-none-any.whl\"\ - ,\n \"filename\": \"serviceconnector_passwordless-0.3.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"serviceconnector-passwordless\",\n \"run_requires\"\ - : [\n {\n \"requires\":\ - \ [\n \"PyMySQL (==1.0.2)\",\n \ - \ \"azure-core\",\n \"azure-mgmt-servicelinker\ - \ (==1.2.0b1)\",\n \"psycopg2-binary (==2.9.5)\"\ - ,\n \"pyodbc (==4.0.35)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless\ - \ Extension\",\n \"version\": \"0.3.2\"\n \ - \ },\n \"sha256Digest\": \"51f2a46660cf7d489a08be9292d5ba1c6e9a09925ead9baac0ba50fe982670f8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.3-py3-none-any.whl\"\ - ,\n \"filename\": \"serviceconnector_passwordless-0.3.3-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"serviceconnector-passwordless\",\n \"run_requires\"\ - : [\n {\n \"requires\":\ - \ [\n \"PyMySQL (==1.0.2)\",\n \ - \ \"azure-core\",\n \"azure-mgmt-servicelinker\ - \ (==1.2.0b1)\",\n \"psycopg2-binary (==2.9.5)\"\ - ,\n \"pyodbc (==4.0.35)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless\ - \ Extension\",\n \"version\": \"0.3.3\"\n \ - \ },\n \"sha256Digest\": \"9f9cddae41ab3172fe541e88b915ef4a8cb16139a5215d259ee23c279c290472\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.4-py3-none-any.whl\"\ - ,\n \"filename\": \"serviceconnector_passwordless-0.3.4-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"serviceconnector-passwordless\",\n \"run_requires\"\ - : [\n {\n \"requires\":\ - \ [\n \"PyMySQL (==1.0.2)\",\n \ - \ \"azure-core\",\n \"azure-mgmt-servicelinker\ - \ (==1.2.0b1)\",\n \"psycopg2-binary (==2.9.5)\"\ - ,\n \"pyodbc (==4.0.35)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless\ - \ Extension\",\n \"version\": \"0.3.4\"\n \ - \ },\n \"sha256Digest\": \"5b68cc4fcf6cde9edd4691dd55a9bb063fcce0f2c740abbab798d65804cd07a2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.5-py3-none-any.whl\"\ - ,\n \"filename\": \"serviceconnector_passwordless-0.3.5-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"serviceconnector-passwordless\",\n \"run_requires\"\ - : [\n {\n \"requires\":\ - \ [\n \"PyMySQL (==1.0.2)\",\n \ - \ \"azure-core\",\n \"azure-mgmt-servicelinker\ - \ (==1.2.0b1)\",\n \"psycopg2-binary (==2.9.5)\"\ - ,\n \"pyodbc (==4.0.35)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless\ - \ Extension\",\n \"version\": \"0.3.5\"\n \ - \ },\n \"sha256Digest\": \"05df173778361eed918fa63d241704b47e479443f053bf3ff327f07946c5f553\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.6-py3-none-any.whl\"\ - ,\n \"filename\": \"serviceconnector_passwordless-0.3.6-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"serviceconnector-passwordless\",\n \"run_requires\"\ - : [\n {\n \"requires\":\ - \ [\n \"PyMySQL (==1.0.2)\",\n \ - \ \"azure-core\",\n \"azure-mgmt-servicelinker\ - \ (==1.2.0b1)\",\n \"psycopg2-binary (==2.9.5)\"\ - ,\n \"pyodbc (==4.0.35)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless\ - \ Extension\",\n \"version\": \"0.3.6\"\n \ - \ },\n \"sha256Digest\": \"c9e6d013ae6142a4d4fdefbec40b89c4af37ea1c4c4840b02f27d3e9573a1357\"\ - \n }\n ],\n \"spring\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.0.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.0.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.30.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.0.0\"\n },\n \ - \ \"sha256Digest\": \"ac3a708e67b9de1b38583313e0504e318f92005fd583143594e03ca7fd70b1aa\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.30.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.1.0\"\n },\n \ - \ \"sha256Digest\": \"5ea52b25dd34ef7c253f9e5aff2933dee5fe01bb66791f71c85981f68610ab85\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.1.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.30.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.1.1\"\n },\n \ - \ \"sha256Digest\": \"67d9d8b02739221f00822f82f4fad31b972a60ab1b4bbeee2ece955b4124bd29\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.1.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.30.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.1.2\"\n },\n \ - \ \"sha256Digest\": \"0ea6fa1d20a5f494597dcb627282152b7a1e9e3b20028afb5e6406376f15203c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.3-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.1.3-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.30.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.1.3\"\n },\n \ - \ \"sha256Digest\": \"65110cbf382e4a1ad98c108c618f2c77bd32634d8ae4759cae5ea47c026c7c85\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.4-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.1.4-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.30.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.1.4\"\n },\n \ - \ \"sha256Digest\": \"f159454ffaac8d90baa484870ac2e9acf7d2f18aabc0a6dac3db8342d21a7fab\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.5-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.1.5-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.30.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.1.5\"\n },\n \ - \ \"sha256Digest\": \"091004e8bfea9c39fbb192065b2355018f6a3ab1041e914ace26f8c02ef14687\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.7-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.1.7-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.1.7\"\n },\n \ - \ \"sha256Digest\": \"351b7e2d1b434f72eeaa1a8392a57e2c2cb52223d2140c446de85e339f7c457d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.8-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.1.8-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.1.8\"\n },\n \ - \ \"sha256Digest\": \"e0ff591d3833ea873c4e3ba72c33f314c67ff01cf3da2da358a2b40cea9b6bb0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.9-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.1.9-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.1.9\"\n },\n \ - \ \"sha256Digest\": \"bb71dbe3b05a6bc32bce1b12a5793dd6171dbed226d3173f115ffe411a8044df\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.10-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.1.10-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.1.10\"\n },\n \ - \ \"sha256Digest\": \"864200fb0cc9f988e40db675c6b6b016c2fcff91ff25551c03a576ae0dd4096b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.11-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.1.11-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.1.11\"\n },\n \ - \ \"sha256Digest\": \"be1471eb6aa6a462d13f352f643f4267fa8411c73f17d2b6d0f842229860dde8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.12-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.1.12-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.1.12\"\n },\n \ - \ \"sha256Digest\": \"ae1c41d2d09150c600e51d6de3a085a04d079b6803bdf4fcba6b041460f46a8d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.13-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.1.13-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.1.13\"\n },\n \ - \ \"sha256Digest\": \"c3d968114b8e68b522962dccba958bc43b0235af55c417ad5cf6b6a25f1a9444\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.14-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.1.14-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.1.14\"\n },\n \ - \ \"sha256Digest\": \"e7d57cac5569ee8b530ddc51cf44ff45eedbdf5f94fadbb058e79eea705758a8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.2.0\"\n },\n \ - \ \"sha256Digest\": \"36ff3ca0812a809dcfda55b4510194f3a53891b7f5a7a2bb0bc5385c072e9fae\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.3.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.3.0\"\n },\n \ - \ \"sha256Digest\": \"5021a61fc3d91bcd78ce38f15d2d1de977d6aa9c15e87cfc9d45c653a01076d6\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.4.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.4.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.4.0\"\n },\n \ - \ \"sha256Digest\": \"e808882388d07ccbd1b96a176a3d992b8434296a16af816a6dd19e13bb228d55\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.4.1-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.4.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.4.1\"\n },\n \ - \ \"sha256Digest\": \"bca1287b8fb6cd2e1d4b1d4d92859840ee5e44223225942756d067cd0eeed8d8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.4.2-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.4.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.4.2\"\n },\n \ - \ \"sha256Digest\": \"6a56032cea46be8a2e3cd27242c73481d2b2f31074456cb31c868a051eda3127\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.5.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.5.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.5.0\"\n },\n \ - \ \"sha256Digest\": \"b553b17bdeab27e2c69f9dd3957e5e59efc664b9405e581809a2730cc7ef5619\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.6.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.6.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.6.0\"\n },\n \ - \ \"sha256Digest\": \"30839266640b6e89a183107ede0abcdec3363cd5831fe36c179107d267faa57b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.6.1-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.6.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.6.1\"\n },\n \ - \ \"sha256Digest\": \"37a32ef1b28f9e1ecd1f61a76bf6a44bf063746a5401894dd513999afdeed0b0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.6.2-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.6.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.6.2\"\n },\n \ - \ \"sha256Digest\": \"6718bc1fb7ff0e106b3e00603d900adab9e2ed7b7939a0e1ed223d5cdf7924fc\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.6.3-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.6.3-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.6.3\"\n },\n \ - \ \"sha256Digest\": \"0dcbb166127c0f4eb0b33eb70ea108b6c7e9f470858c12da30eecb483eb0080b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.6.4-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.6.4-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.6.4\"\n },\n \ - \ \"sha256Digest\": \"a52902d1a828827847c2b8a571fcd3970ee6c006a49ed1fcfd57e581bfefa251\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.6.5-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.6.5-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.6.5\"\n },\n \ - \ \"sha256Digest\": \"a00363a73db626180830a20c0465874f6d4062dad07862e1b4a22f8c1908dca8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.6.6-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.6.6-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.6.6\"\n },\n \ - \ \"sha256Digest\": \"34064f43b620a36f1f8aa20200990297aaaf91c58795e0274d6f719136b029a4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.6.7-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.6.7-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.6.7\"\n },\n \ - \ \"sha256Digest\": \"7d9a8d4f792962dd1f713a839f9099bcf04c24958411f8e0edc4ef47321b87a3\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.6.8-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.6.8-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.6.8\"\n },\n \ - \ \"sha256Digest\": \"2286a779c293a47a4f2d01c2699f6d01ac8d28ac471c07e97f4c9f38750e6c92\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.7.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.7.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.38.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.7.0\"\n },\n \ - \ \"sha256Digest\": \"913b70f5f98b1da973fdb8324916ebc8fef4747a872b834efcbdef19101cb424\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.7.1-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.7.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.7.1\"\n },\n \ - \ \"sha256Digest\": \"4a4252041f9b0395cf6614b86b1c93afd94ac92d75ab82daae6634b0dbfa60a5\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.7.2-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.7.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.7.2\"\n },\n \ - \ \"sha256Digest\": \"b4a5740ff04788a947d6c67c57cea71b3a3e3244adb7d19bc02e52ccd7c4fea0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.7.3-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.7.3-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.7.3\"\n },\n \ - \ \"sha256Digest\": \"a58e5fec5be4068420a10e14072bc788caf2782908c3406c92c761c4619426ec\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.8.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.8.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.8.0\"\n },\n \ - \ \"sha256Digest\": \"d83225658e5959ee43b9dac59ec9d9488fc3f3158f09f99f5d97ab58f1549c17\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.9.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.9.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.9.0\"\n },\n \ - \ \"sha256Digest\": \"9efab0aa23a5aba4ed754b25e1197b9b1e960184cecd10237d3ebad66c3c1a78\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.9.1-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.9.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.9.1\"\n },\n \ - \ \"sha256Digest\": \"3b07830d1a32c045af46de4c77250db5ea65fba26f1d9bb8f7f8582a923d34b2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.9.2-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.9.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.9.2\"\n },\n \ - \ \"sha256Digest\": \"36b30260e23bef6398eb153090379d8784d6b3868fa41d1748e447a37a21c874\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.10.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.10.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.10.0\"\n },\n \ - \ \"sha256Digest\": \"031895d8e91ad28eb8edda87b34bd704d8ed8b471597bcaaa0064ff2c408c101\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.11.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.11.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.11.0\"\n },\n \ - \ \"sha256Digest\": \"a02e5fe4531399d9e2d790004e55ce21d19dd384e2da377244beeb7342239291\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.11.1-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.11.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.11.1\"\n },\n \ - \ \"sha256Digest\": \"7cb83c3cb8811f10c724d7d321510821b9c8ca7103927820c8aab8257a063f44\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.11.2-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.11.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.11.2\"\n },\n \ - \ \"sha256Digest\": \"6122206a0eb4de9bde73b8a8975b8f1b7ccf120e8b419dadbd890921c068120a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.11.3-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.11.3-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.11.3\"\n },\n \ - \ \"sha256Digest\": \"415dce682cd5636d234e0b36f015322b0fb5062a0a7955bc8f9a122cdd7f9c0e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.12.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.12.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.12.0\"\n },\n \ - \ \"sha256Digest\": \"8d2a4bf4fa2bad75868b1f1dabfe5e6d41e93affd29098f1c818486174aed3ec\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.12.1-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.12.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.12.1\"\n },\n \ - \ \"sha256Digest\": \"8b4ddd8caa4df29b8e98e4d258ce2ca36d146387300b7b289c705de760bd75ff\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.12.2-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.12.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.12.2\"\n },\n \ - \ \"sha256Digest\": \"89e1762ee425d9d535b563799b9ef8bca1dbdc1083e217b6f5403c5b737e8ce0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.13.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.13.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.13.0\"\n },\n \ - \ \"sha256Digest\": \"ad70a699f7b14f3fa7099a4ea4da31cd62f7222ce3fe7b8f705df16750dd3dcb\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.13.1-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.13.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.13.1\"\n },\n \ - \ \"sha256Digest\": \"bc70bf2099410034e833c95c76b4b35366916f3f50f53bb22cfbdc6c9224754d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.13.2-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.13.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.13.2\"\n },\n \ - \ \"sha256Digest\": \"e87768d4df7b6a633f9c0ea50216a49c382d3a681a4f8c2a39021cc802092887\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.13.3-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.13.3-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.13.3\"\n },\n \ - \ \"sha256Digest\": \"694913f936898e8a3c06feae951be4c979913a3fc04d4a5eeb944f1586406cac\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.14.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring-1.14.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n\ - \ \"version\": \"1.14.0\"\n },\n \ - \ \"sha256Digest\": \"3452d273b7e2bda35c592944518ff65cc148c06369a5b976af84100f1b6be719\"\ - \n }\n ],\n \"spring-cloud\": [\n {\n\ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"2.1.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development Status ::\ - \ 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"spring-cloud\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools spring-cloud Extension\",\n \ - \ \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"1042caa1c3b6c85c2e5360bf57de4d26f71afd80ecae6b14cf45fbfe73b5cf0e\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"2.1.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"spring-cloud\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools spring-cloud Extension\",\n \ - \ \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"f42d8c99ace9b4df29eea79ac7a588b1fcaecd381b1a80c7dbdd920756f8d209\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"2.1.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"spring-cloud\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools spring-cloud Extension\",\n \ - \ \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"b39aa8c49b316b1870e79db0526be2db772b179f9f517f72af898d9c3cc3310d\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-0.2.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.maxCliCoreVersion\": \"2.1.0\",\n \ - \ \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"spring-cloud\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools spring-cloud Extension\",\n \ - \ \"version\": \"0.2.1\"\n },\n \ - \ \"sha256Digest\": \"dfb974346cf9f62d8f9564756d6661cd758904d1e7035ca61c7227d6b0fc6cf1\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-0.2.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"spring-cloud\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools spring-cloud Extension\",\n \ - \ \"version\": \"0.2.2\"\n },\n \ - \ \"sha256Digest\": \"ab81ea74ecb86edaa1b4e5938e1136dbf6788b237b141c5905b121646edd9f5b\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-0.2.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"spring-cloud\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools spring-cloud Extension\",\n \ - \ \"version\": \"0.2.3\"\n },\n \ - \ \"sha256Digest\": \"c4af1e193256ae2b04fc9c46a414c3203944b458b2a8959654c55450ec9ea76d\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-0.2.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"spring-cloud\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools spring-cloud Extension\",\n \ - \ \"version\": \"0.2.4\"\n },\n \ - \ \"sha256Digest\": \"9e18d1d44c7f63c970bbc70d29f6c5719c4062c5defa5a63165db13d8623fc70\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-0.2.5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"spring-cloud\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools spring-cloud Extension\",\n \ - \ \"version\": \"0.2.5\"\n },\n \ - \ \"sha256Digest\": \"281fc1babe47793e0bcccbe004ea4771802038eead1e8c3b553461b8062be912\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-0.2.6-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"spring-cloud\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools spring-cloud Extension\",\n \ - \ \"version\": \"0.2.6\"\n },\n \ - \ \"sha256Digest\": \"f3fdb9cd98dcd887a7f84dcc5eff38c8b6384b464fa0734965df9f379acaacd8\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.3.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-0.3.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"spring-cloud\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools spring-cloud Extension\",\n \ - \ \"version\": \"0.3.0\"\n },\n \ - \ \"sha256Digest\": \"9c719fe1c6f539ba663283bd2eb8464aa9bcbf2d35617ac58408c6133f824f38\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.3.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-0.3.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"spring-cloud\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools spring-cloud Extension\",\n \ - \ \"version\": \"0.3.1\"\n },\n \ - \ \"sha256Digest\": \"a720deecb978406fb081c148078ee8831780cefefe965556852c00f8e1fc36c7\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.4.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-0.4.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"spring-cloud\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools spring-cloud Extension\",\n \ - \ \"version\": \"0.4.0\"\n },\n \ - \ \"sha256Digest\": \"c09d2a188fe5e41f7fd9835c1efd0c3065b55f2b9efde39b6f2ff399be567eec\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.5.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-0.5.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"spring-cloud\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools spring-cloud Extension\",\n \ - \ \"version\": \"0.5.0\"\n },\n \ - \ \"sha256Digest\": \"b2a36656b073f9cf588755508757fcd2cd7e0f8d573b7e43fc5fa3adb315a063\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.5.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-0.5.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"spring-cloud\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools spring-cloud Extension\",\n \ - \ \"version\": \"0.5.1\"\n },\n \ - \ \"sha256Digest\": \"79fd3b7b6928ea53b63a040412420398e138097e960a3afdfa76da051f140f19\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.0.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-1.0.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"spring-cloud\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools spring-cloud Extension\",\n \ - \ \"version\": \"1.0.0\"\n },\n \ - \ \"sha256Digest\": \"698aa10606de4ec9eec580747a2d6d38c755633261241d75618badc53fe1e0f4\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.0.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-1.0.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"spring-cloud\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools spring-cloud Extension\",\n \ - \ \"version\": \"1.0.1\"\n },\n \ - \ \"sha256Digest\": \"d2b766d594c89a19abba3a7b2df6224d1af15fd9202b31fe5d57b9d9970b399c\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-1.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"spring-cloud\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools spring-cloud Extension\",\n \ - \ \"version\": \"1.1.0\"\n },\n \ - \ \"sha256Digest\": \"a4fa97d6241fab2a66d8dd80e0d6a68ea17d849bb7404349ad6203c71fb89ba9\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-1.1.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"spring-cloud\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools spring-cloud Extension\",\n \ - \ \"version\": \"1.1.1\"\n },\n \ - \ \"sha256Digest\": \"ed63f4464f80e47df33b336ede149e1bc0f3b985dd033ee3541fffbaa9ad5f59\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-1.2.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"1.2.0\"\n },\n \ - \ \"sha256Digest\": \"241c7485bfc3792efe8cd728df2ce8aa3a52eb078b7eab43a1dd2fd6322b413a\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.0.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.0.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.0.0\"\n },\n \ - \ \"sha256Digest\": \"c1e2931b439dea0bea043aec7817b454d510c944552a7bf084fd9916ab513142\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.0.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.0.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.0.1\"\n },\n \ - \ \"sha256Digest\": \"82e4d6c55a28dd7de155504e6836981a390e26562ca684bdf9240324bf428665\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.1.0\"\n },\n \ - \ \"sha256Digest\": \"4d6714f950fc8f3097d4ec1e1a6eb52f564f3fd543195cb3e5da2b47f187fa92\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.1.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.1.1\"\n },\n \ - \ \"sha256Digest\": \"a9775975158941a59479571440dcf6555c6dabfff576ed5ffaf98bd25e49fe12\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.1.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.1.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.1.2\"\n },\n \ - \ \"sha256Digest\": \"a07a8718562169a6ec1524e2a111ab5f926b05db91f484ae2ff2397218afe171\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.2.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.2.0\"\n },\n \ - \ \"sha256Digest\": \"88ba35a78eb607d24d1c6ac72aa770990e961e3db17ed70278d99a60eee8830e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.2.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.2.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.2.1\"\n },\n \ - \ \"sha256Digest\": \"d12cf4e756b518d4caf799fc59e312a28fd105fe5c5ddaa62ceb22929ec2dc63\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.3.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.3.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.3.0\"\n },\n \ - \ \"sha256Digest\": \"6c776b16405b4c01bfd8af78307914eb5f050bb3793d7bf6549b2eca645d02f4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.3.1-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.3.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.3.1\"\n },\n \ - \ \"sha256Digest\": \"3597aab72ffc4d9fdc3ee9d02b492bc0b11146b9ae0f4b9f4d6f958c05fdc980\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.4.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.4.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.4.0\"\n },\n \ - \ \"sha256Digest\": \"f4abfe885c9d08e80d48f1983d09082e8340e353ceb861a8eb9ce62f6786b180\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.5.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.5.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.5.0\"\n },\n \ - \ \"sha256Digest\": \"2238877407cb3d4c0425350350abee4f82da5376d11fea979194c62f8b485f68\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.5.1-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.5.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.5.1\"\n },\n \ - \ \"sha256Digest\": \"a0a28e6eea330f55f5dce630a4ddbbcc9f6f4d800a3e0fc3eeaf1bf2bb7db095\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.6.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.6.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.6.0\"\n },\n \ - \ \"sha256Digest\": \"a3f685cd0166cabb4e289aba399045399fb2fdc3d691f05cd5d8e9000031b434\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.7.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.7.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.7.0\"\n },\n \ - \ \"sha256Digest\": \"2694319d0d46dff1b159b0b02d615cb8848306e7c3df81a334ce35523f834b73\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.7.1-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.7.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.7.1\"\n },\n \ - \ \"sha256Digest\": \"68917af5100e931c03887a56ed14edb4d8ea258c049759b07018f52f03f8c08c\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.8.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.8.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.8.0\"\n },\n \ - \ \"sha256Digest\": \"0c29139a8cdaf18c70cd53497a5888885c71fef03698631400191947496f97a9\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.9.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.9.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.9.0\"\n },\n \ - \ \"sha256Digest\": \"902fa79c399a2f374987ac84b65d76cf8e349de57da7a52c8c781a559fe24f35\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.10.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.10.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.10.0\"\n },\n \ - \ \"sha256Digest\": \"0f5f286381bdb4f8a36b7e1484da8a651b9a41b6a5ffd5390c2ebe76577415d3\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.11.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.11.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.11.0\"\n },\n \ - \ \"sha256Digest\": \"0b9bd233a830046a0286387c65a12facc5dea2d498281a50bda64ba846ef4dc7\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.11.1-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.11.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.11.1\"\n },\n \ - \ \"sha256Digest\": \"0646e9965895f9ff1640d461049c2249f2a67036c4bac60ff90f8ba792c6e95f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.11.2-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.11.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.11.2\"\n },\n \ - \ \"sha256Digest\": \"11d01765c886a387ab622580e4e7b9476a86be5ee84a4d4af7120ef189752f32\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.12.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.12.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.12.0\"\n },\n \ - \ \"sha256Digest\": \"5865ebb83df7fe713a5ad7d2687b5b1b0c5668b24a774e80e04c303d9b8e6f9e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.12.1-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.12.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.12.1\"\n },\n \ - \ \"sha256Digest\": \"a46561af3afdca63d0b74bb97242e83e4b187601832b8531f915d7604964c430\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.12.2-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.12.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.12.2\"\n },\n \ - \ \"sha256Digest\": \"54880b35deac43f659d9e2b5a8a1f7437898eaf848c002a5733487bed6c9b42e\"\ - \n },\n {\n \"downloadUrl\": \"https://ascprivatecli.blob.core.windows.net/cli-extension/spring_cloud-2.12.3-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-2.12.3-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"2.12.3\"\n },\n \ - \ \"sha256Digest\": \"026c63b42b7b63464e0016e7321c074b99600656d9d5b57c4bada27d268deb28\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.0.0-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-3.0.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"3.0.0\"\n },\n \ - \ \"sha256Digest\": \"4d7f70bd517be50771f0e0eb94ca2535ed5907f29b7929534f1dd6a26684a805\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.0.1-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-3.0.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"3.0.1\"\n },\n \ - \ \"sha256Digest\": \"1142951621ab8ae41759275261cdd0507d11544ba03ad57e02c880e074eabafd\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-3.1.1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.34.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"3.1.1\"\n },\n \ - \ \"sha256Digest\": \"24d37afd816a9b6cbad6e3e0fae2c515ed2f11639cf7944266d128f01e98a0b9\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-3.1.2-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"3.1.2\"\n },\n \ - \ \"sha256Digest\": \"f30828da4055c5cb4e88e981a6f883c304fafea747ecac46e92f2b65a04e1dc8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.1.3-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-3.1.3-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"3.1.3\"\n },\n \ - \ \"sha256Digest\": \"2826a70767439d7a3e2ff1446f13bf6a5075359f37d675181d8d97f75808fee8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.1.4-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-3.1.4-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"3.1.4\"\n },\n \ - \ \"sha256Digest\": \"25259140040004f711753a4eb980153d60ceb0560e534705c90141082a1bb085\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.1.5-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-3.1.5-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"3.1.5\"\n },\n \ - \ \"sha256Digest\": \"a8c92bcfe2d1a36174c58966947dd928f9d40bd42e0a2015fb981e6d4f99b4ae\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.1.7-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-3.1.7-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"3.1.7\"\n },\n \ - \ \"sha256Digest\": \"c65cbdd85cb30d0219bb942d7d7bb8e1fedd7d984f24aba60ada83dcfc626a6a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.1.8-py3-none-any.whl\"\ - ,\n \"filename\": \"spring_cloud-3.1.8-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"spring-cloud\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools spring-cloud Extension\"\ - ,\n \"version\": \"3.1.8\"\n },\n \ - \ \"sha256Digest\": \"14993abe3524c28a42b2e9ba0f0a8a7083162ba9174975e09d8cea834b9829ee\"\ - \n }\n ],\n \"ssh\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ssh-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ssh-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.4.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"ryrossit@microsoft.com\"\ - ,\n \"name\": \"Ryan Rossiter\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ssh\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"cryptography (==2.8.0)\",\n \ - \ \"paramiko (==2.6.0)\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"SSH into VMs\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"cf39bfcf542db4a7a3acf119f4ea71f17626eaaac7fe480d058962fec3d3ff25\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-0.1.4-py3-none-any.whl\"\ - ,\n \"filename\": \"ssh-0.1.4-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.4.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"ryrossit@microsoft.com\"\ - ,\n \"name\": \"Ryan Rossiter\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ssh\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"cryptography (==2.8.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"SSH into VMs\",\n \"version\": \"0.1.4\"\ - \n },\n \"sha256Digest\": \"2dc5540957fa050c986b6cfa5c57b5e0bb06f3d46d868d54d4418b15e4082c5e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-0.1.5-py3-none-any.whl\"\ - ,\n \"filename\": \"ssh-0.1.5-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.4.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ssh\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"cryptography (==2.8.0)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"SSH into VMs\",\n \"version\": \"0.1.5\"\ - \n },\n \"sha256Digest\": \"070cc0bf147852872908ca9910d668c6f9b93b89d5cc6d0ec2869142635e6ae6\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-0.1.6-py3-none-any.whl\"\ - ,\n \"filename\": \"ssh-0.1.6-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.4.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ssh\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"cryptography\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \ - \ \"version\": \"0.1.6\"\n },\n \ - \ \"sha256Digest\": \"a4de20dd94051c4b9143805cb9531075f56df5f56106c6aaed5e2fd1ffd62c3d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-0.1.7-py3-none-any.whl\"\ - ,\n \"filename\": \"ssh-0.1.7-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.4.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ssh\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"cryptography\",\n \"oschmod\ - \ (==0.3.12)\"\n ]\n }\n\ - \ ],\n \"summary\": \"SSH into Azure\ - \ VMs using RBAC and AAD OpenSSH Certificates\",\n \"version\"\ - : \"0.1.7\"\n },\n \"sha256Digest\": \"680bd601879c1687faf5d7c15a7fac15887ffa613ff1b37f6fd6e98ba96998ff\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-0.1.8-py3-none-any.whl\"\ - ,\n \"filename\": \"ssh-0.1.8-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.4.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ssh\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"cryptography\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \ - \ \"version\": \"0.1.8\"\n },\n \ - \ \"sha256Digest\": \"bd01a2dfb72acb547161338de894395db8b939e892ce19e4ec99fa3ce18f78f9\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.0.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ssh-1.0.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": true,\n\ - \ \"azext.minCliCoreVersion\": \"2.4.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n\ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ssh\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"cryptography\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \ - \ \"version\": \"1.0.0\"\n },\n \ - \ \"sha256Digest\": \"12073d047fbedb7daca67c7ccbb3b063d0c82c01d02d00a28b9c560702fda099\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.0.1-py3-none-any.whl\"\ - ,\n \"filename\": \"ssh-1.0.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.4.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n \ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ssh\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"cryptography\"\n ]\n \ - \ }\n ],\n \"summary\"\ - : \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \ - \ \"version\": \"1.0.1\"\n },\n \ - \ \"sha256Digest\": \"f54a2bcc784316c451dc4a776f3ca910fb804296e96b9d8ff7b262754a7e79e0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ssh-1.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.4.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n \ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ssh\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"cryptography\",\n \"oschmod\ - \ (==0.3.12)\"\n ]\n }\n\ - \ ],\n \"summary\": \"SSH into Azure\ - \ VMs using RBAC and AAD OpenSSH Certificates\",\n \"version\"\ - : \"1.1.0\"\n },\n \"sha256Digest\": \"3256339030666983a84dde5a5198cff91a4d555c785cf0480de61b4d9a495550\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"ssh-1.1.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.4.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n \ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ssh\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"cryptography\",\n \"oschmod\ - \ (==0.3.12)\"\n ]\n }\n\ - \ ],\n \"summary\": \"SSH into Azure\ - \ VMs using RBAC and AAD OpenSSH Certificates\",\n \"version\"\ - : \"1.1.1\"\n },\n \"sha256Digest\": \"71c6ffe17e95734735d2f8387cd643cb11b1628d6b66751507f7aea6931d9855\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"ssh-1.1.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.4.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n \ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ssh\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"oschmod (==0.3.12)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\"\ - ,\n \"version\": \"1.1.2\"\n },\n \ - \ \"sha256Digest\": \"e50513e5985024936c5f65ae564817e5705ccda69046abcbabd2418f5753d48e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.1.3-py3-none-any.whl\"\ - ,\n \"filename\": \"ssh-1.1.3-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.4.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n \ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ssh\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"oschmod (==0.3.12)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\"\ - ,\n \"version\": \"1.1.3\"\n },\n \ - \ \"sha256Digest\": \"7cc245377b2a287b6ca4d2b47119ee48a1c5aa18443db00e6ea0e071825f7adf\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.1.4-py3-none-any.whl\"\ - ,\n \"filename\": \"ssh-1.1.4-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n \ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ssh\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"oschmod (==0.3.12)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\"\ - ,\n \"version\": \"1.1.4\"\n },\n \ - \ \"sha256Digest\": \"410147d46141519be32f3b572cbc4654d8d8d3ec9e6a86a66bb08f783c9ecc5a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.1.5-py3-none-any.whl\"\ - ,\n \"filename\": \"ssh-1.1.5-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n \ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ssh\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"oschmod (==0.3.12)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\"\ - ,\n \"version\": \"1.1.5\"\n },\n \ - \ \"sha256Digest\": \"c0377075050af03caf70b27449efac36b2151fb34fd11f184de8bf79041a9de9\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.1.6-py3-none-any.whl\"\ - ,\n \"filename\": \"ssh-1.1.6-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n \ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ssh\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"oschmod (==0.3.12)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\"\ - ,\n \"version\": \"1.1.6\"\n },\n \ - \ \"sha256Digest\": \"ed727dbe18994db27d22b4c1fdc28a6bfa0a91670042389b0534838f9eb235e1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-2.0.0-py3-none-any.whl\"\ - ,\n \"filename\": \"ssh-2.0.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n \ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ssh\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"oschmod (==0.3.12)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\"\ - ,\n \"version\": \"2.0.0\"\n },\n \ - \ \"sha256Digest\": \"4ea13f7043fd7ff624131818724068c8aa730e65cdf069df185d4e152ac2b2ab\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-2.0.1-py3-none-any.whl\"\ - ,\n \"filename\": \"ssh-2.0.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\": false,\n\ - \ \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development Status\ - \ :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n \ - \ }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"ssh\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"oschmod (==0.3.12)\"\n ]\n\ - \ }\n ],\n \"\ - summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\"\ - ,\n \"version\": \"2.0.1\"\n },\n \ - \ \"sha256Digest\": \"a5da31dcdd83ad793a607ace5db3f86d04cb6f58910184f86dee2218aad79329\"\ - \n }\n ],\n \"stack-hci\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"stack_hci-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"stack-hci\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureStackHCIClient\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"9095702d720e24173616232ffab42bdf121dd82eeda48becd52d141f73c35bb3\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"stack_hci-0.1.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"stack-hci\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureStackHCIClient\ - \ Extension\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"dc6bc793de093c9e2be98d68379f7178ee67231058ece34bbf2f8e2d9f89f2e0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"stack_hci-0.1.2-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"stack-hci\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureStackHCIClient\ - \ Extension\",\n \"version\": \"0.1.2\"\n \ - \ },\n \"sha256Digest\": \"c9c2359f5684f7c59600e55b2e99cdcd913f59dc2d7e5cc7d5e493b13b1248d1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.3-py3-none-any.whl\"\ - ,\n \"filename\": \"stack_hci-0.1.3-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"stack-hci\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureStackHCIClient\ - \ Extension\",\n \"version\": \"0.1.3\"\n \ - \ },\n \"sha256Digest\": \"c47cafffa1b541dd9e42100339ed4d22184a22974c804641a7e5adba4a756ba1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.4-py3-none-any.whl\"\ - ,\n \"filename\": \"stack_hci-0.1.4-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"stack-hci\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureStackHCIClient\ - \ Extension\",\n \"version\": \"0.1.4\"\n \ - \ },\n \"sha256Digest\": \"2da335cae454c13cd02d8bf54ba2131f42998a35f619f7ba3937e9f93d592c29\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.5-py3-none-any.whl\"\ - ,\n \"filename\": \"stack_hci-0.1.5-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/stack-hci\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"stack-hci\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureStackHCIClient\ - \ Extension\",\n \"version\": \"0.1.5\"\n \ - \ },\n \"sha256Digest\": \"8edc35b629c2d86d0f88cdf3e63e16db4af13af1d69723edf541f9dce216e511\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.6-py3-none-any.whl\"\ - ,\n \"filename\": \"stack_hci-0.1.6-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/stack-hci\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"stack-hci\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureStackHCIClient\ - \ Extension\",\n \"version\": \"0.1.6\"\n \ - \ },\n \"sha256Digest\": \"35077970e30adc39d6bd2292d29fba35b274a09fc7f271d8ee0e9c01ceeba20e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.7-py3-none-any.whl\"\ - ,\n \"filename\": \"stack_hci-0.1.7-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.45.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/stack-hci\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"stack-hci\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureStackHCIClient\ - \ Extension\",\n \"version\": \"0.1.7\"\n \ - \ },\n \"sha256Digest\": \"e94f1fa190d504d080a6ad34f631f95aacfd1a0c56268d6d479267c9af8e27ba\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.8-py3-none-any.whl\"\ - ,\n \"filename\": \"stack_hci-0.1.8-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.48.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/stack-hci\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"stack-hci\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureStackHCIClient\ - \ Extension\",\n \"version\": \"0.1.8\"\n \ - \ },\n \"sha256Digest\": \"8fd1859564ff3fcb15688902f73ea7ee014423c74a0ae07ebf53e9fcfdb99dc4\"\ - \n }\n ],\n \"staticwebapp\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/staticwebapp-1.0.0-py3-none-any.whl\"\ - ,\n \"filename\": \"staticwebapp-1.0.0-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.39.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/staticwebapp\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"staticwebapp\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Staticwebapp Extension\"\ - ,\n \"version\": \"1.0.0\"\n },\n \ - \ \"sha256Digest\": \"fb1dcd876fc2d829cc7a1cc545e9445364d43357d888bb3deeb36a716b805717\"\ - \n }\n ],\n \"storage-blob-preview\": [\n \ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_blob_preview-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.9.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"storage-blob-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Storage-blob-preview\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"3407bc6ea0425aab5c5a495c447b0d9ec4f4a360f08bdfd68cfd7a6504789231\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_blob_preview-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.12.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"storage-blob-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Storage-blob-preview\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"fc96b22fd656fcba97b8ee3283a1bead65b941aae10c174f597703ad7d8a5114\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.3.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_blob_preview-0.3.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.12.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"storage-blob-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Storage-blob-preview\ - \ Extension\",\n \"version\": \"0.3.0\"\n \ - \ },\n \"sha256Digest\": \"daec951de77a200f3479c00ebf1015534891592cfd4bbf7873c5784bdd3f57a0\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.4.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_blob_preview-0.4.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.14.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"storage-blob-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Storage-blob-preview\ - \ Extension\",\n \"version\": \"0.4.0\"\n \ - \ },\n \"sha256Digest\": \"03ef575ccf01776e99f8adb1882c77ee41278ff18901556424c753279724c9a3\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.4.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_blob_preview-0.4.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.16.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"storage-blob-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Storage-blob-preview\ - \ Extension\",\n \"version\": \"0.4.1\"\n \ - \ },\n \"sha256Digest\": \"4cb5caa42e4c70db8ea5b33ad663246419003af30234f93ccef9aa2252e294d3\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.5.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_blob_preview-0.5.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.16.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"storage-blob-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Storage-blob-preview\ - \ Extension\",\n \"version\": \"0.5.0\"\n \ - \ },\n \"sha256Digest\": \"a3303da3925f8ad83c8eeced02f6b8897b355a3cc249424a7e70c621ee0d3642\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.5.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_blob_preview-0.5.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"storage-blob-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Storage-blob-preview\ - \ Extension\",\n \"version\": \"0.5.1\"\n \ - \ },\n \"sha256Digest\": \"d09bf0befecb5f64b803a1873e666900d3b2d0ca9fe6eea5bd959a68254339a8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.5.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_blob_preview-0.5.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"storage-blob-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Storage-blob-preview\ - \ Extension\",\n \"version\": \"0.5.2\"\n \ - \ },\n \"sha256Digest\": \"adabed83d8fad6a23dda1763edcef110962a4abf04450e1461a1345572e7052a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.6.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_blob_preview-0.6.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"storage-blob-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Storage-blob-preview\ - \ Extension\",\n \"version\": \"0.6.0\"\n \ - \ },\n \"sha256Digest\": \"5ce281e94a4aff64964d80ea042f3a7fee472848575bbe796b6ff764ae67e478\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.6.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_blob_preview-0.6.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"storage-blob-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Storage-blob-preview\ - \ Extension\",\n \"version\": \"0.6.1\"\n \ - \ },\n \"sha256Digest\": \"1f2362df611cb017b516d5b9a4389f194066dcf308e8cbc52ea7868d0c5f3f80\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.6.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_blob_preview-0.6.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-blob-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storage-blob-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Storage-blob-preview\ - \ Extension\",\n \"version\": \"0.6.2\"\n \ - \ },\n \"sha256Digest\": \"e9bae6062186e6241fc77ab2162767eab4d4b593266faa8f81a6ff8a8917625e\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.7.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_blob_preview-0.7.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-blob-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storage-blob-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Storage-blob-preview\ - \ Extension\",\n \"version\": \"0.7.0\"\n \ - \ },\n \"sha256Digest\": \"a2015b7a7b06ec3f013a3911db35ec463dd8b75d6bb2824330b5857125ae7767\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.7.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_blob_preview-0.7.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-blob-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storage-blob-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Storage-blob-preview\ - \ Extension\",\n \"version\": \"0.7.1\"\n \ - \ },\n \"sha256Digest\": \"af7bbbeb78d7c080bf0fb1637484e7c70917b2f695fbed8ddcc4b55b52a4db19\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.7.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_blob_preview-0.7.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-blob-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storage-blob-preview\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Storage-blob-preview\ - \ Extension\",\n \"version\": \"0.7.2\"\n \ - \ },\n \"sha256Digest\": \"002b7779f4c6531fdb714f77bcea5d3d96007a7ff5b86869f8e56aad98298b23\"\ - \n }\n ],\n \"storage-mover\": [\n {\n\ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_mover-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"storage_mover-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-mover\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storage-mover\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools StorageMover Extension.\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"0f8e5c21714cf107848671f22b9ff029bc188047dae9adea8d9832c33173772d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_mover-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"storage_mover-0.1.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-mover\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storage-mover\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools StorageMover Extension.\"\ - ,\n \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"0576833f2e974605df3312adb0a0e55d7f8486d240541990b08f9f51c111744e\"\ - \n }\n ],\n \"storage-preview\": [\n {\n\ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.8-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.2.8-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.52\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storage-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\"\ - ,\n \"version\": \"0.2.8\"\n },\n \ - \ \"sha256Digest\": \"a3d48247051e95847ded28217433c4b98fc02d6ee21eedfcb24dd43f7360569d\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.9-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.2.9-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storage-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\"\ - ,\n \"version\": \"0.2.9\"\n },\n \ - \ \"sha256Digest\": \"880e01de0fab8893770497ef9410559ae223a1f09dbd6a23712226ab4e2d5ecb\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.10-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.2.10-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storage-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\"\ - ,\n \"version\": \"0.2.10\"\n },\n \ - \ \"sha256Digest\": \"8c87013be456849f27ea7f76df284e998e6f3911d3de478ec19abe84bb30fbe9\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.11-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.2.11-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storage-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\"\ - ,\n \"version\": \"0.2.11\"\n },\n \ - \ \"sha256Digest\": \"b00ccc8846bbb389b95064e7e9b547cbd877b0a596b8c36d86982be435695d5c\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.12-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.2.12-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storage-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\"\ - ,\n \"version\": \"0.2.12\"\n },\n \ - \ \"sha256Digest\": \"5bd273bf4c1952f4576faf05ed80fd73b25f0f4d0be81fe0bbf471019705a6bb\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.3.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.3.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.6.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storage-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\"\ - ,\n \"version\": \"0.3.0\"\n },\n \ - \ \"sha256Digest\": \"7fb50e37a0e271c118124b4488474e3c2957cffe1b319660bd3df91534911008\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.4.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.4.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storage-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\"\ - ,\n \"version\": \"0.4.0\"\n },\n \ - \ \"sha256Digest\": \"822137d0987829d27537f36923d31d69371e756f8adc686ccdd5a2e03a40ab5f\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.5.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.5.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storage-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\"\ - ,\n \"version\": \"0.5.0\"\n },\n \ - \ \"sha256Digest\": \"7ec8887f3f83a4f67613a22f1eea7f9c5968c9b108d74c7299eacc400e40c710\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.6.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.6.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storage-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\"\ - ,\n \"version\": \"0.6.0\"\n },\n \ - \ \"sha256Digest\": \"9431e5bba2ddd8d7850c1e3b4fc2a29dd0cc38322f1b04247bf7f7a5f3aacf4a\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.6.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.6.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storage-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\"\ - ,\n \"version\": \"0.6.1\"\n },\n \ - \ \"sha256Digest\": \"93cf02038cb209c2baee6e2a4bf17e0c8a8f55eb2c86c7678163499f84c31a75\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.7.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.7.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storage-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\"\ - ,\n \"version\": \"0.7.0\"\n },\n \ - \ \"sha256Digest\": \"3b2a463e7852cd1153372b3dd9522c007dee8daff53ccf26fda0c84b642e8367\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.7.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.7.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storage-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\"\ - ,\n \"version\": \"0.7.1\"\n },\n \ - \ \"sha256Digest\": \"25f0848bb685c0886bc4e3074652af587c56edd7ee88fe60df93f8150a8c8caa\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.7.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.7.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.21.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storage-preview\",\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\"\ - ,\n \"version\": \"0.7.2\"\n },\n \ - \ \"sha256Digest\": \"768aecf13a62b06fd26b9d15078da74c38541a2793208b8c434afc55b39c2c64\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.7.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.7.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.21.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"storage-preview\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-core\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\",\n\ - \ \"version\": \"0.7.3\"\n },\n \ - \ \"sha256Digest\": \"ec0e700f8ba51eca45198d5907d056780946e0b5ffa593d264598679e949dcb1\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.7.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.7.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"storage-preview\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-core\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\",\n\ - \ \"version\": \"0.7.4\"\n },\n \ - \ \"sha256Digest\": \"eede880e897e6fbfb7e631b91ee23b35229c1dbcefb5785279809d53a4568a87\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.8.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.8.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"storage-preview\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-core\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\",\n\ - \ \"version\": \"0.8.0\"\n },\n \ - \ \"sha256Digest\": \"0187510c8ebf2312c8937ae364a723016f912ac237c40685e94bac505e097be0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.8.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.8.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"storage-preview\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-core\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\",\n\ - \ \"version\": \"0.8.1\"\n },\n \ - \ \"sha256Digest\": \"1b31f65c2455974ffed95c2450a933714c3daa10b91972a9a65861ba496fa267\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.8.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.8.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"storage-preview\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-core\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\",\n\ - \ \"version\": \"0.8.2\"\n },\n \ - \ \"sha256Digest\": \"7528528b799aa957d751aa28fc61be07bd999ce22d54748b4a308c7f0def7e94\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.8.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.8.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"storage-preview\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-core\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\",\n\ - \ \"version\": \"0.8.3\"\n },\n \ - \ \"sha256Digest\": \"5ec7a8a7141fe3bef54b6ce570e542b6836933a43b992b918674d9c231e1f7dc\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.8.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.8.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"storage-preview\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-core\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\",\n\ - \ \"version\": \"0.8.4\"\n },\n \ - \ \"sha256Digest\": \"f72b944cdf6887d88b7b8271904b010816b595c9854743761092fca71600a196\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.9.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storage_preview-0.9.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-preview\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"storage-preview\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"azure-core\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Provides a preview for upcoming storage features.\",\n\ - \ \"version\": \"0.9.0\"\n },\n \ - \ \"sha256Digest\": \"9cabf9a6cf901788983017b85e8d39ebb9f3ad080c75309e8855c614f0229f67\"\ - \n }\n ],\n \"storagesync\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storagesync-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storagesync-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"storagesync\",\n \"summary\"\ - : \"Microsoft Azure Command-Line Tools MicrosoftStorageSync Extension\",\n\ - \ \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"a1d15edfcc18d9d301dea843cd7dce9845b8da6f6b1beb47a1bba35ff46eadde\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storagesync-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storagesync-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 2\",\n \"Programming Language :: Python :: 2.7\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storagesync\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storagesync\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools MicrosoftStorageSync\ - \ Extension\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"06d5e71b42edf721c5624cfd286b8593c68316f2b0ea4edf60c7a74835a695e2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storagesync-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"storagesync-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.3.1\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 2\",\n \"Programming Language :: Python :: 2.7\"\ - ,\n \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.4\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n\ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storagesync\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"storagesync\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools MicrosoftStorageSync\ - \ Extension\",\n \"version\": \"0.1.2\"\n \ - \ },\n \"sha256Digest\": \"498aff0d83037e11a668915788a7a78c981d7241ad31e9fb7cf2f27725253261\"\ - \n }\n ],\n \"stream-analytics\": [\n \ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/stream_analytics-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"stream_analytics-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \"Programming\ - \ Language :: Python :: 3.8\",\n \"License :: OSI Approved\ - \ :: MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"\ - license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n\ - \ \"name\": \"stream-analytics\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools stream-analytics Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"e3a9048f289d1b870637e4b13c0ee1e877827834e1f71d31cb8161bacc441388\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stream_analytics-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"stream_analytics-0.1.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stream-analytics\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"stream-analytics\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools StreamAnalyticsManagementClient\ - \ Extension\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"95fcd5a67813e6961026efcd5fce764ce968c15c1ae03ffd7854e6e0f6c8bebc\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stream_analytics-0.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"stream_analytics-0.1.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/stream-analytics\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"stream-analytics\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools StreamAnalyticsManagementClient\ - \ Extension\",\n \"version\": \"0.1.2\"\n \ - \ },\n \"sha256Digest\": \"6a41159bb00f7974017461c3daec5d24385a50491d2157e82b1853f72d12b62c\"\ - \n }\n ],\n \"subscription\": [\n {\n\ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/subscription-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"subscription-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"classifiers\": [\n\ - \ \"Development Status :: 4 - Beta\",\n \ - \ \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \"Programming\ - \ Language :: Python :: 2\",\n \"Programming Language\ - \ :: Python :: 2.7\",\n \"Programming Language :: Python\ - \ :: 3\",\n \"Programming Language :: Python :: 3.4\"\ - ,\n \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"wilcob@microsoft.com\",\n \"\ - name\": \"Wilco Bauwer\",\n \"role\": \"\ - author\"\n }\n ],\n\ - \ \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n \ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"subscription\",\n \ - \ \"summary\": \"Support for subscription management preview.\",\n\ - \ \"version\": \"0.1.3\"\n },\n \ - \ \"sha256Digest\": \"74388eb7d4976c620bd41ef577cdb9284cd9a3e38dc4756796d091a7c8193267\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/subscription-0.1.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"subscription-0.1.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.30\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"wilcob@microsoft.com\",\n \ - \ \"name\": \"Wilco Bauwer\",\n \ - \ \"role\": \"author\"\n }\n\ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"subscription\",\n \ - \ \"summary\": \"Support for subscription management preview.\",\n\ - \ \"version\": \"0.1.4\"\n },\n \ - \ \"sha256Digest\": \"0f28407be656e9930d06240b95bf1ccc8ebbbc9fc961cbd9e4b0575e1867b03d\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/subscription-0.1.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"subscription-0.1.5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.30\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"wilcob@microsoft.com\",\n \ - \ \"name\": \"Wilco Bauwer\",\n \ - \ \"role\": \"author\"\n }\n\ - \ ],\n \"document_names\"\ - : {\n \"description\": \"DESCRIPTION.rst\"\n\ - \ },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/subscription\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"subscription\",\n \ - \ \"summary\": \"Support for subscription management preview.\",\n\ - \ \"version\": \"0.1.5\"\n },\n \ - \ \"sha256Digest\": \"ff7896aebc46862a6d30ac5f4cf64bdd40cb50e5437cea299590896d75f1013e\"\ - \n }\n ],\n \"support\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/support-0.1.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"support-0.1.1-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.81\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/azure/azure-cli-extensions/tree/master/src/support\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"support\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Support Extension\"\ - ,\n \"version\": \"0.1.1\"\n },\n \ - \ \"sha256Digest\": \"e74e1b769155a08226d103781dbec7a20b517c37f4b75871172b2769e37676fa\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/support-1.0.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"support-1.0.0-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.81\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/azure/azure-cli-extensions/tree/master/src/support\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"support\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Support Extension\"\ - ,\n \"version\": \"1.0.0\"\n },\n \ - \ \"sha256Digest\": \"3646b584af5fb68e57a153991cdbf049cd6f8e471c36b28c7f3bb642ecc341d8\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/support-1.0.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"support-1.0.1-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.81\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/azure/azure-cli-extensions/tree/master/src/support\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"support\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Support Extension\"\ - ,\n \"version\": \"1.0.1\"\n },\n \ - \ \"sha256Digest\": \"5490c5dbe52b0457b51a327426cad741005f8afc24c13cefefb9fe8694a558f7\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/support-1.0.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"support-1.0.2-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.81\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/azure/azure-cli-extensions/tree/master/src/support\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"support\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Support Extension\"\ - ,\n \"version\": \"1.0.2\"\n },\n \ - \ \"sha256Digest\": \"815e9ed05789f4cd00eb00cbae0e6339e7519c0c6d816bf3aa302af534acef5b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/support-1.0.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"support-1.0.3-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.81\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/azure/azure-cli-extensions/tree/master/src/support\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"support\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Support Extension\"\ - ,\n \"version\": \"1.0.3\"\n },\n \ - \ \"sha256Digest\": \"9f5b4ebc6a90b48d2a3c18ce7b74d89240275dcf23aa836b8509882b1ee28c56\"\ - \n }\n ],\n \"timeseriesinsights\": [\n \ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"timeseriesinsights-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/src/timeseriesinsights\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"timeseriesinsights\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools TimeSeriesInsightsClient\ - \ Extension\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"a1cd9f9177ff31010638048d3737dc39fac144d9ca107fe4eafc4339386d71cd\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"timeseriesinsights-0.1.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/src/timeseriesinsights\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"timeseriesinsights\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools TimeSeriesInsightsClient\ - \ Extension\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"3276b876cad87ef8b29e6af58294fc7ff20b9d2d0187ce84e2b15ba8917b00d9\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.1.2-py3-none-any.whl\"\ - ,\n \"filename\": \"timeseriesinsights-0.1.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/src/timeseriesinsights\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"timeseriesinsights\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools TimeSeriesInsightsClient\ - \ Extension\",\n \"version\": \"0.1.2\"\n \ - \ },\n \"sha256Digest\": \"3caba62be85114e44cd61c8541df49c7ff67b76b8c26e53e198b00a98a907417\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.1.3-py3-none-any.whl\"\ - ,\n \"filename\": \"timeseriesinsights-0.1.3-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/src/timeseriesinsights\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"timeseriesinsights\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools TimeSeriesInsightsClient\ - \ Extension\",\n \"version\": \"0.1.3\"\n \ - \ },\n \"sha256Digest\": \"84009856e1a9e6e6b178425099c2e1eaa4753ba5e375426a504f92bd4b9a21aa\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"timeseriesinsights-0.2.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isExperimental\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/timeseriesinsights\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"timeseriesinsights\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools TimeSeriesInsightsClient\ - \ Extension\",\n \"version\": \"0.2.0\"\n \ - \ },\n \"sha256Digest\": \"79f257abed8ac699a395e1c61351cd2c68f3a1844d3369aca5b346b2b1c0aa10\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"timeseriesinsights-0.2.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.11.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/timeseriesinsights\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"timeseriesinsights\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools TimeSeriesInsightsClient\ - \ Extension\",\n \"version\": \"0.2.1\"\n \ - \ },\n \"sha256Digest\": \"6ec3fe5ff3d92c3c2c8ba581af679567bfc430dd38fa70945b43378cf9b81ff2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-1.0.0b1-py3-none-any.whl\"\ - ,\n \"filename\": \"timeseriesinsights-1.0.0b1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.50.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/timeseriesinsights\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"timeseriesinsights\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools TimeSeriesInsightsClient\ - \ Extension\",\n \"version\": \"1.0.0b1\"\n \ - \ },\n \"sha256Digest\": \"c578804a6cfbb4ef8ab91de2130bba8f6139f2fadea4ed1e38b05ea62c7aa95d\"\ - \n }\n ],\n \"traffic-collector\": [\n \ - \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/traffic_collector-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"traffic_collector-0.1.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.39.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/traffic-collector\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"traffic-collector\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools TrafficCollector\ - \ Extension.\",\n \"version\": \"0.1.0\"\n \ - \ },\n \"sha256Digest\": \"c148d0db3dc2284f30fe8d9cce4cde9be7f93b18664aae54d70622fd86a09b3a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/traffic_collector-0.1.1-py3-none-any.whl\"\ - ,\n \"filename\": \"traffic_collector-0.1.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.40.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/traffic-collector\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"traffic-collector\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools TrafficCollector\ - \ Extension.\",\n \"version\": \"0.1.1\"\n \ - \ },\n \"sha256Digest\": \"8fbce712f8edcedf422c463f6b970fa7bdd94a452887ca5ddefb4fb00735acb5\"\ - \n }\n ],\n \"virtual-network-manager\": [\n \ - \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-0.5.1-py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_network_manager-0.5.1-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/network-manager\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-network-manager\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools NetworkManagementClient\ - \ Extension\",\n \"version\": \"0.5.1\"\n \ - \ },\n \"sha256Digest\": \"3c633cc53b341ae78514a62ab8cd7faf13c211e98a1c464eae2f636030d1e090\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-0.5.2-py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_network_manager-0.5.2-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/network-manager\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-network-manager\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools NetworkManagementClient\ - \ Extension\",\n \"version\": \"0.5.2\"\n \ - \ },\n \"sha256Digest\": \"a115ac51ef73b6ba377b289f15b3afe87b392bd462ae50c21c91b9f7fc2288c8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-0.5.3-py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_network_manager-0.5.3-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.15.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/network-manager\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-network-manager\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools NetworkManagementClient\ - \ Extension\",\n \"version\": \"0.5.3\"\n \ - \ },\n \"sha256Digest\": \"6b956e955ac01eec26f1135cdadb58e4bc7349a7c3e4064a077433ddf88cccf9\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-0.6.0-py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_network_manager-0.6.0-py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.minCliCoreVersion\"\ - : \"2.43.0\",\n \"classifiers\": [\n \ - \ \"Development Status :: 4 - Beta\",\n \"Intended\ - \ Audience :: Developers\",\n \"Intended Audience ::\ - \ System Administrators\",\n \"Programming Language\ - \ :: Python\",\n \"Programming Language :: Python ::\ - \ 3\",\n \"Programming Language :: Python :: 3.6\"\ - ,\n \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"azpycli@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/network-manager\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-network-manager\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools NetworkManagementClient\ - \ Extension\",\n \"version\": \"0.6.0\"\n \ - \ },\n \"sha256Digest\": \"91215253b053ad19413345c789b5ed1cc79ab2af18624ad279dca24a7913730a\"\ - \n }\n ],\n \"virtual-network-tap\": [\n \ - \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_network_tap-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_network_tap-0.1.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-network-tap\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-network-tap\",\n \ - \ \"summary\": \"Manage virtual network taps (VTAP).\",\n \ - \ \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"7e3f634f8eb701cf6fef504159785bc90e6f5bd2482e459469dd9ab30601aa35\"\ - \n }\n ],\n \"virtual-wan\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.1.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.1.2\"\n },\n \ - \ \"sha256Digest\": \"35d7b9f8b62167957708902b19a6c2f97ceaafa28abcba815b39a2d9040066f8\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.1.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.1.3\"\n },\n \ - \ \"sha256Digest\": \"10bc530d54677c0f24363326f28b0476a3324198417117e3effa031c20d6c2cb\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.2.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"45b52f87cd76a269d8e6151782a437692cea3725b4f64d9d4d64cc2c4b49288f\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.2.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.2.1\"\n },\n \ - \ \"sha256Digest\": \"db108cf3fb9f3a49aea87f35d658b0bdc9c2321122b9a1ec1f58f4fecb0ebe90\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.2.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.2.2\"\n },\n \ - \ \"sha256Digest\": \"0b141457b8c3f57061f300dae18472ec9da96f4b4f9ddb9239a4a5dbda7c1ffd\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.2.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.2.3\"\n },\n \ - \ \"sha256Digest\": \"21e1333af42c80c094099212db57b5e7171afee8690f0de211fdf359e3f1da16\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.2.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.2.4\"\n },\n \ - \ \"sha256Digest\": \"236668a188121738975f85148957ce843dd43c8644f76c915dde9d2f8233c9e4\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.2.5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.2.5\"\n },\n \ - \ \"sha256Digest\": \"e16f67e75abfd1d462d16cc00cca97551c63c5d6f9d4bbc838b4f331b2c1072a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.2.6-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.2.6\"\n },\n \ - \ \"sha256Digest\": \"4c695172677a9397b94f335748ca1b10caa87d5dfbefe1975e73aae60bf8b69f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.2.7-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.2.7\"\n },\n \ - \ \"sha256Digest\": \"9358296298aa06595055b6d82ce3a4443b3a63dc4236f675e056769c5c633bc9\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.8-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.2.8-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.2.8\"\n },\n \ - \ \"sha256Digest\": \"14568d2b5de27623558f6d4d26ce68a3b4af0a429cc82cbb06021942f7239a36\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.9-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.2.9-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.2.9\"\n },\n \ - \ \"sha256Digest\": \"ca3569805f44c420ed58719fb9e514d7fa28b84bec9fc1321702250cdd8fcbf0\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.10-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.2.10-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.2.10\"\n },\n \ - \ \"sha256Digest\": \"eb0afdcc23910d9e7ec5a55c511f0e67c5d8c0229d84eaaa821b72ccb2468c23\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.11-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.2.11-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.2.11\"\n },\n \ - \ \"sha256Digest\": \"35899c30c1a7e7dd43b36895deac4eb0accbb88c98d2e8c5c41dd985f732ee1b\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.12-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.2.12-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.2.12\"\n },\n \ - \ \"sha256Digest\": \"d213eb778405b8128bc657ce61fcc19f2cde044ab9ab0950f28a94795ae9ccfd\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.13-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.2.13-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.39.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.2.13\"\n },\n \ - \ \"sha256Digest\": \"3e928079bb81620ed133d3f3692e9b7ba0632bd75cdf0aea704eb640450b5d37\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.14-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.2.14-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.40.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.2.14\"\n },\n \ - \ \"sha256Digest\": \"9765d218d70f51e69725af92690e26c135937206483add4bf47854553f839e23\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.15-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.2.15-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.40.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.2.15\"\n },\n \ - \ \"sha256Digest\": \"e701b4da1f6ebcbf58d4b16f9e349f9edc8117ad922e2ae7ec1b2a31bc2828db\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.16-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.2.16-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"project_urls\": {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.2.16\"\n },\n \ - \ \"sha256Digest\": \"39a75f9a88493949bd3e6f7bb4978d475720f7c97e056fcb6c201a8532fb6e76\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.17-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.2.17-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"project_urls\": {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.2.17\"\n },\n \ - \ \"sha256Digest\": \"736e4d0fe7af899cc9825893c9994e25c467fb6750d8e7653fe9d33c0fc2394a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.3.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"virtual_wan-0.3.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.50.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"azpycli@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"project_urls\": {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/virtual-wan\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"virtual-wan\",\n \ - \ \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\"\ - ,\n \"version\": \"0.3.0\"\n },\n \ - \ \"sha256Digest\": \"e5f4e9d4398cf0fcd656c0107386adbc8493e69e3158af6c5145ed23aaf77165\"\ - \n }\n ],\n \"vm-repair\": [\n {\n \ - \ \"downloadUrl\": \"https://azurecomputeaidrepair.blob.core.windows.net/prod/vm_repair-0.2.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.2.6-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"classifiers\": [\n\ - \ \"Development Status :: 4 - Beta\",\n \ - \ \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \"Programming\ - \ Language :: Python :: 2\",\n \"Programming Language\ - \ :: Python :: 2.7\",\n \"Programming Language :: Python\ - \ :: 3\",\n \"Programming Language :: Python :: 3.4\"\ - ,\n \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"caiddev@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.2.6\"\n },\n \"sha256Digest\"\ - : \"3556adeb1053262aa1aa0203b53423252afbd89b3e455255c2a2964a3be9a78e\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.2.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.2.7-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"classifiers\": [\n\ - \ \"Development Status :: 4 - Beta\",\n \ - \ \"Intended Audience :: Developers\",\n \ - \ \"Intended Audience :: System Administrators\",\n \ - \ \"Programming Language :: Python\",\n \"Programming\ - \ Language :: Python :: 2\",\n \"Programming Language\ - \ :: Python :: 2.7\",\n \"Programming Language :: Python\ - \ :: 3\",\n \"Programming Language :: Python :: 3.4\"\ - ,\n \"Programming Language :: Python :: 3.5\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n \ - \ ],\n \"extensions\": {\n \ - \ \"python.details\": {\n \"contacts\": [\n\ - \ {\n \"\ - email\": \"caiddev@microsoft.com\",\n \"\ - name\": \"Microsoft Corporation\",\n \"\ - role\": \"author\"\n }\n \ - \ ],\n \"document_names\": {\n \ - \ \"description\": \"DESCRIPTION.rst\"\n \ - \ },\n \"project_urls\": {\n\ - \ \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.2.7\"\n },\n \"sha256Digest\"\ - : \"4949871a99d5ef62ffdad72d35bfa75a483f1a714bf8d7ca84f134f86a5e9578\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.3.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.3.1\"\n },\n \"sha256Digest\"\ - : \"4c893d48469b70772318c989ecac03e1ac494dc0c97652d1827a8ad55d8e8b51\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.3.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.3.2\"\n },\n \"sha256Digest\"\ - : \"b7837a3129ff2614d27c2acbd254e97d83ac1540745225d2b156c897bb065125\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.3.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.3.3\"\n },\n \"sha256Digest\"\ - : \"04ddc34a525af5b313f9dd1b5b446e5aa2a79d242451cf09f7670147c7aadd42\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.3.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.3.4\"\n },\n \"sha256Digest\"\ - : \"b5964a8ed60193dc73e9109763af7cbb0162c029dbd81ed9ec5a7f20fa48ee7d\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.3.5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.3.5\"\n },\n \"sha256Digest\"\ - : \"70112e8c4ce186f0c494e89680d751f8f4c6dc906c47cc44b8b5cdf0e19d2e50\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.3.6-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.3.6\"\n },\n \"sha256Digest\"\ - : \"bd7d1259bb095ab238d8efca72c201570c5144816d7d4e98e73d1a82eb08a80a\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.3.7-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.3.7\"\n },\n \"sha256Digest\"\ - : \"021ae4b3b776b41e98fc91c35bc54e0ea7bcdfd32be3cfd23261e450535326bd\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.8-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.3.8-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.3.8\"\n },\n \"sha256Digest\"\ - : \"51499825455a4db3e4ede2a5abd31a28e8177f9bf66597c41dac0dc4851c41bb\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.9-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.3.9-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.3.9\"\n },\n \"sha256Digest\"\ - : \"d8a13d094c4900114a46778bb7c34f567401850193616d00dd06e02f415ceb81\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.4.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.4.0\"\n },\n \"sha256Digest\"\ - : \"075c1df17bc63b1029cbcffee499143bef02ee1f6bd28ea1bf1f736352630532\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.4.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.4.1\"\n },\n \"sha256Digest\"\ - : \"7dfc648e6dfa0392feb8491af3da54e229edd48bb75421cd554cd5be7e99e149\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.4.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.4.2\"\n },\n \"sha256Digest\"\ - : \"cef2c111ea85fe22d51ee67ed4a88e46d9ac771ec04d5dc411460420d913cd4f\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.4.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.4.3\"\n },\n \"sha256Digest\"\ - : \"a9bf31ef4166e564a8fdcccb70edb217b59f0036a0849c5c57ec951f1693a08a\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.4.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.4.4\"\n },\n \"sha256Digest\"\ - : \"de9e7d77143dadc1606ebe079431ed974e483737cc001e89ff52335f60c938d1\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.5-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.4.5-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.4.5\"\n },\n \"sha256Digest\"\ - : \"6fb1d3a83fb4e06581f850d68070d22ed7d29739633a336efaeb8155baadd0df\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.6-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.4.6-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.4.6\"\n },\n \"sha256Digest\"\ - : \"79b261c39c6f90889d0bfa41581566bb8b659b492ca1f9a37d700518b1408b85\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.7-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.4.7-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.4.7\"\n },\n \"sha256Digest\"\ - : \"bed73a688d073c97207daaa907816db5781b429b6f3441d1b618b463feff2fcb\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.8-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.4.8-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.4.8\"\n },\n \"sha256Digest\"\ - : \"2ea0b50f1b484bc9c7ea72e9285163de489e726ef24cb2939620d3fa3c763c4a\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.9-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.4.9-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.4.9\"\n },\n \"sha256Digest\"\ - : \"4fe3fe3af8d52b86ad51af08b642fe93f4de076947df8127e9825762e7c46769\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.10-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.4.10-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.4.10\"\n },\n \"sha256Digest\"\ - : \"67e4fd4a5daf78c9e7244cabda74aede9d2c9c92d11dab4c3e3d431017e656c7\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.5.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.5.0-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.5.0\"\n },\n \"sha256Digest\"\ - : \"dd5f2ec5d37aa6e745e9e706d4bd1d848f17f209807522831354ac0230c07f4c\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.5.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.5.1-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.5.1\"\n },\n \"sha256Digest\"\ - : \"91efbb3d2b46f01e6a4b04fd792f353dd702a8769319f59a0252fa35d7c409ab\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.5.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.5.2-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.5.2\"\n },\n \"sha256Digest\"\ - : \"959f9bae59170c8c8785e47f046f3634472243b76cf576f049ca4cdaded0534e\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.5.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.5.3-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.5.3\"\n },\n \"sha256Digest\"\ - : \"6b71d6ddfb3a70057316ca760b0406417a330852ef184b2da239e417c4852dd4\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.5.4-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vm_repair-0.5.4-py2.py3-none-any.whl\"\ - ,\n \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"caiddev@microsoft.com\",\n \ - \ \"name\": \"Microsoft Corporation\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vm-repair\",\n \ - \ \"summary\": \"Auto repair commands to fix VMs.\",\n \ - \ \"version\": \"0.5.4\"\n },\n \"sha256Digest\"\ - : \"49938853a802b1415f697200402e26a74679805fe08f0ba6b2e066bb4af69730\"\n \ - \ }\n ],\n \"vmware\": [\n {\n \ - \ \"downloadUrl\": \"https://github.com/virtustream/az-vmware-cli/releases/download/0.7.2/vmware-0.7.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vmware-0.7.2-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.66\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/az-vmware-cli\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\"\ - : \"MIT\",\n \"metadata_version\": \"2.0\",\n \ - \ \"name\": \"vmware\",\n \"summary\": \"Azure\ - \ VMware Solution commands.\",\n \"version\": \"0.7.2\"\ - \n },\n \"sha256Digest\": \"b84b027fe8d836f8969893480cef63b05b85db1a59f6ef11063e52be530fd9ff\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vmware-1.0.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vmware-1.0.0-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.0.66\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/az-vmware-cli\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\"\ - : \"MIT\",\n \"metadata_version\": \"2.0\",\n \ - \ \"name\": \"vmware\",\n \"summary\": \"Azure\ - \ VMware Solution commands.\",\n \"version\": \"1.0.0\"\ - \n },\n \"sha256Digest\": \"e1775b05e22e3afb70ad395bc3cff1cb7fdfc9a90836b61e13d4c54843577ddb\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-2.0.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vmware-2.0.1-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"description_content_type\": \"text/markdown\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/az-vmware-cli\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\"\ - : \"MIT\",\n \"metadata_version\": \"2.0\",\n \ - \ \"name\": \"vmware\",\n \"summary\": \"Azure\ - \ VMware Solution commands.\",\n \"version\": \"2.0.1\"\ - \n },\n \"sha256Digest\": \"9201be5570c050b7f048f25b70ee0a2229bf73ad048aea036b484166631bc8e5\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-3.0.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vmware-3.0.0-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"description_content_type\": \"text/markdown\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/az-vmware-cli\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\"\ - : \"MIT\",\n \"metadata_version\": \"2.0\",\n \ - \ \"name\": \"vmware\",\n \"summary\": \"Azure\ - \ VMware Solution commands.\",\n \"version\": \"3.0.0\"\ - \n },\n \"sha256Digest\": \"d68bcb114a2b46860eecf0debeb0d9c5db46c069399ef9e3f5292220a3cd37c2\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-3.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vmware-3.1.0-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"description_content_type\": \"text/markdown\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/az-vmware-cli\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\"\ - : \"MIT\",\n \"metadata_version\": \"2.0\",\n \ - \ \"name\": \"vmware\",\n \"summary\": \"Azure\ - \ VMware Solution commands.\",\n \"version\": \"3.1.0\"\ - \n },\n \"sha256Digest\": \"7b1ff134e840caa3b30a636fceb0e6a8022565e8a439245b8e1a111534e196f8\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-3.2.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vmware-3.2.0-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"description_content_type\": \"text/markdown\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/az-vmware-cli\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\"\ - : \"MIT\",\n \"metadata_version\": \"2.0\",\n \ - \ \"name\": \"vmware\",\n \"summary\": \"Azure\ - \ VMware Solution commands.\",\n \"version\": \"3.2.0\"\ - \n },\n \"sha256Digest\": \"4d557e5fbd5cc8cfc80a9f6085d5503007a0955160e264b816f9e6a6a7332580\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-4.0.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vmware-4.0.1-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"description_content_type\": \"text/markdown\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/az-vmware-cli\"\n \ - \ }\n }\n },\n \ - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\"\ - : \"MIT\",\n \"metadata_version\": \"2.0\",\n \ - \ \"name\": \"vmware\",\n \"summary\": \"Azure\ - \ VMware Solution commands.\",\n \"version\": \"4.0.1\"\ - \n },\n \"sha256Digest\": \"93008844fbc5b157d17470738899e9f8cd0d09be2970cd045da10b8f8dac360a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-4.0.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vmware-4.0.2-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"description_content_type\": \"text/markdown\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vmware\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vmware\",\n \ - \ \"summary\": \"Azure VMware Solution commands.\",\n \ - \ \"version\": \"4.0.2\"\n },\n \"sha256Digest\"\ - : \"ce2fe71b5095fea0d3762e7c698abf1bb0d7b51cb54a4e841d07493c24ccbbdb\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-4.1.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vmware-4.1.0-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"description_content_type\": \"text/markdown\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vmware\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vmware\",\n \ - \ \"summary\": \"Azure VMware Solution commands.\",\n \ - \ \"version\": \"4.1.0\"\n },\n \"sha256Digest\"\ - : \"05a8c52125bcd12250201a2ef0a1eb637e2b28f8b30aa4df014036f403584131\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-5.0.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vmware-5.0.1-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"description_content_type\": \"text/markdown\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vmware\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vmware\",\n \ - \ \"summary\": \"Azure VMware Solution commands.\",\n \ - \ \"version\": \"5.0.1\"\n },\n \"sha256Digest\"\ - : \"1e971f5d4e3072017a624af9cf04919fbf78a755c7566c851c3b07cffdb46073\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-5.0.2-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vmware-5.0.2-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"description_content_type\": \"text/markdown\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vmware\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vmware\",\n \ - \ \"summary\": \"Azure VMware Solution commands.\",\n \ - \ \"version\": \"5.0.2\"\n },\n \"sha256Digest\"\ - : \"3e8c591a7725b27ea3452d27ccbb1368e72fa689710ccffbca51c5adf1683ea1\"\n \ - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-5.0.3-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"vmware-5.0.3-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : false,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \ - \ \"description_content_type\": \"text/markdown\",\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\":\ - \ \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vmware\"\n\ - \ }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"vmware\",\n \ - \ \"summary\": \"Azure VMware Solution commands.\",\n \ - \ \"version\": \"5.0.3\"\n },\n \"sha256Digest\"\ - : \"3bd864a243c7c72d41e7ac71af1d2c1389eb9974169548e6004f69ffae7ffc72\"\n \ - \ }\n ],\n \"webapp\": [\n {\n \ - \ \"downloadUrl\": \"https://github.com/Nking92/azure-cli-extensions/raw/whl-files/dist/webapp-0.2.24-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"webapp-0.2.24-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"sisirap@microsoft.com\",\n \ - \ \"name\": \"Sisira Panchagnula\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webapp\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"webapp\",\n \ - \ \"summary\": \"Additional commands for Azure AppService.\",\n \ - \ \"version\": \"0.2.24\"\n },\n \"\ - sha256Digest\": \"797abb3d8b41547ed3c2bcc8e01e30cbb5d487262cd2f285e755419bd1c03bed\"\ - \n },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/webapp-0.3.1-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"webapp-0.3.1-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"sisirap@microsoft.com\",\n \ - \ \"name\": \"Sisira Panchagnula\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webapp\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"webapp\",\n \ - \ \"summary\": \"Additional commands for Azure AppService.\",\n \ - \ \"version\": \"0.3.1\"\n },\n \"\ - sha256Digest\": \"1cd5bb1a8ad02a5f7c8c72a01692637fed434b24ea359d21caf919ed5323941a\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webapp-0.4.0-py2.py3-none-any.whl\"\ - ,\n \"filename\": \"webapp-0.4.0-py2.py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.23.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 2\",\n \ - \ \"Programming Language :: Python :: 2.7\",\n \ - \ \"Programming Language :: Python :: 3\",\n \"\ - Programming Language :: Python :: 3.4\",\n \"Programming\ - \ Language :: Python :: 3.5\",\n \"Programming Language\ - \ :: Python :: 3.6\",\n \"License :: OSI Approved ::\ - \ MIT License\"\n ],\n \"extensions\"\ - : {\n \"python.details\": {\n \ - \ \"contacts\": [\n {\n \ - \ \"email\": \"sisirap@microsoft.com\",\n \ - \ \"name\": \"Sisira Panchagnula\",\n \ - \ \"role\": \"author\"\n \ - \ }\n ],\n \"\ - document_names\": {\n \"description\": \"DESCRIPTION.rst\"\ - \n },\n \"project_urls\"\ - : {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webapp\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"webapp\",\n \ - \ \"summary\": \"Additional commands for Azure AppService.\",\n \ - \ \"version\": \"0.4.0\"\n },\n \"\ - sha256Digest\": \"908b0df07cef652176a0f2bf0fdcf58b5d16fb4903ee3c06f73f0bb3913a5c0f\"\ - \n }\n ],\n \"webpubsub\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-0.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"webpubsub-0.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.22.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"webpubsub\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub Extension\"\ - ,\n \"version\": \"0.1.0\"\n },\n \ - \ \"sha256Digest\": \"e36b3e5d0585b1082884150b829de871dbe906fd2b5356689127e1153829245f\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-0.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"webpubsub-0.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.22.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"webpubsub\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"websockets (~=8.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub Extension\"\ - ,\n \"version\": \"0.2.0\"\n },\n \ - \ \"sha256Digest\": \"f29d5b7217b8f03fc05dde2cab282cbebec9d211dc8cd7c1ee9baa71b23ff6d5\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-0.2.1-py3-none-any.whl\"\ - ,\n \"filename\": \"webpubsub-0.2.1-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ true,\n \"azext.minCliCoreVersion\": \"2.22.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"webpubsub\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"websockets (~=8.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub Extension\"\ - ,\n \"version\": \"0.2.1\"\n },\n \ - \ \"sha256Digest\": \"8eac173dde02b0703d0dd3ef193e796e83e85732c98302aa0f53418a128bddec\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.0.0-py3-none-any.whl\"\ - ,\n \"filename\": \"webpubsub-1.0.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ false,\n \"azext.minCliCoreVersion\": \"2.22.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"webpubsub\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"websockets (~=8.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub Extension\"\ - ,\n \"version\": \"1.0.0\"\n },\n \ - \ \"sha256Digest\": \"5e98577476bc8aba299baa00e664ff10185546c8f766260b961ef1c428b66a34\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.1.0-py3-none-any.whl\"\ - ,\n \"filename\": \"webpubsub-1.1.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ false,\n \"azext.minCliCoreVersion\": \"2.22.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.6\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"webpubsub\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"websockets (~=8.1)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub Extension\"\ - ,\n \"version\": \"1.1.0\"\n },\n \ - \ \"sha256Digest\": \"802e829313a4993702d114a94eb8b119a376085d92b0a7860fd2c308e73112f6\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.2.0-py3-none-any.whl\"\ - ,\n \"filename\": \"webpubsub-1.2.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ false,\n \"azext.minCliCoreVersion\": \"2.39.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/webpubsub\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"webpubsub\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"websockets (~=10.4)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub Extension\"\ - ,\n \"version\": \"1.2.0\"\n },\n \ - \ \"sha256Digest\": \"faf83397b2215c7686ae7b3e93a576c3fd0aa9c70173ab72be66d2089b84b280\"\ - \n },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.3.0-py3-none-any.whl\"\ - ,\n \"filename\": \"webpubsub-1.3.0-py3-none-any.whl\",\n \ - \ \"metadata\": {\n \"azext.isPreview\":\ - \ false,\n \"azext.minCliCoreVersion\": \"2.39.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"License :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\"\ - : {\n \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/webpubsub\"\ - \n }\n }\n \ - \ },\n \"extras\": [],\n \"generator\"\ - : \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \ - \ \"metadata_version\": \"2.0\",\n \"\ - name\": \"webpubsub\",\n \"run_requires\": [\n \ - \ {\n \"requires\": [\n \ - \ \"websockets (~=10.4)\"\n \ - \ ]\n }\n ],\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub Extension\"\ - ,\n \"version\": \"1.3.0\"\n },\n \ - \ \"sha256Digest\": \"ea713a11d4c2da55a1d60390bdb552f78bb80c1606214829eef099481eedb1da\"\ - \n }\n ],\n \"workloads\": [\n {\n \ - \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/workloads-0.1.0a1-py3-none-any.whl\"\ - ,\n \"filename\": \"workloads-0.1.0a1-py3-none-any.whl\",\n\ - \ \"metadata\": {\n \"azext.isPreview\"\ - : true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \ - \ \"classifiers\": [\n \"Development\ - \ Status :: 4 - Beta\",\n \"Intended Audience :: Developers\"\ - ,\n \"Intended Audience :: System Administrators\"\ - ,\n \"Programming Language :: Python\",\n \ - \ \"Programming Language :: Python :: 3\",\n \ - \ \"Programming Language :: Python :: 3.7\",\n \ - \ \"Programming Language :: Python :: 3.8\",\n \ - \ \"Programming Language :: Python :: 3.9\",\n \"License\ - \ :: OSI Approved :: MIT License\"\n ],\n \ - \ \"extensions\": {\n \"python.details\": {\n\ - \ \"contacts\": [\n \ - \ {\n \"email\": \"azpycli@microsoft.com\"\ - ,\n \"name\": \"Microsoft Corporation\"\ - ,\n \"role\": \"author\"\n \ - \ }\n ],\n \ - \ \"document_names\": {\n \"description\"\ - : \"DESCRIPTION.rst\"\n },\n \ - \ \"project_urls\": {\n \"Home\":\ - \ \"https://github.com/Azure/azure-cli-extensions/tree/main/src/workloads\"\ - \n }\n }\n \ - \ },\n \"generator\": \"bdist_wheel (0.30.0)\",\n\ - \ \"license\": \"MIT\",\n \"metadata_version\"\ - : \"2.0\",\n \"name\": \"workloads\",\n \ - \ \"summary\": \"Microsoft Azure Command-Line Tools Workloads Extension.\"\ - ,\n \"version\": \"0.1.0a1\"\n },\n \ - \ \"sha256Digest\": \"0e5ba95c3799d043fc2ba869ce0c5b2eea200357a8b0cbd2b2733bb91d4cc7a8\"\ - \n }\n ]\n },\n \"formatVersion\": \"1\"\n}" + string: "{\n \"extensions\": {\n \"acat\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/acat-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"acat-1.0.0b1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/acat\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"acat\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Acat Extension.\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"9c228e93fdda531137ba6e5abad2b48577cf58512e4be0dee51cef111267327a\"\n + \ }\n ],\n \"account\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/account-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"account-0.1.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"account\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SubscriptionClient Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"badd35099d52efc5d8c337eee3ce3958005e6bfbb0c83798a74458b90ea6046b\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/account-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"account-0.2.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"account\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SubscriptionClient Extension\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"a5613056e59cccaf4de58d9b108b0103f1b5a698345e6261b5bf83b3ff7637cf\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/account-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"account-0.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/account\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"account\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SubscriptionClient Extension\",\n \"version\": \"0.2.1\"\n + \ },\n \"sha256Digest\": \"aba36f7a6f109d2bd1b1624ebcfdfd07a97e9a0b05b051d0af7d2ddb4d2f3c89\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/account-0.2.4-py3-none-any.whl\",\n + \ \"filename\": \"account-0.2.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/account\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"account\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SubscriptionClient Extension\",\n \"version\": \"0.2.4\"\n + \ },\n \"sha256Digest\": \"3bbf45c0e82cf5f76f62beee08b2df8c01dc6a5863d887814e791af69c6f715b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/account-0.2.5-py3-none-any.whl\",\n + \ \"filename\": \"account-0.2.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/account\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"account\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SubscriptionClient Extension\",\n \"version\": \"0.2.5\"\n + \ },\n \"sha256Digest\": \"0b94df323acfc48ea3141904649106bb85695187dbf63aa3b8448ec12bc00c23\"\n + \ }\n ],\n \"acrquery\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/acrquery-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"acrquery-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"Programming Language :: Python :: 3.10\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"KraterDev@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/acrquery\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"acrquery\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AcrQuery Extension\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"07f5f253de7e3eb8b2ec2726e3b899474f71ebef9ba2d3c0acbca7a1a0a05c54\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/acrquery-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"acrquery-1.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"Programming Language :: Python :: 3.10\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"KraterDev@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/acrquery\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"acrquery\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AcrQuery Extension\",\n \"version\": \"1.0.1\"\n + \ },\n \"sha256Digest\": \"9094137a4d08f2ede7b662c99df0665f338aae7bcaf4976bed5d42df754571f1\"\n + \ }\n ],\n \"acrtransfer\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/acrtransfer-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"acrtransfer-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"KraterDev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/acrtransfer\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"acrtransfer\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Acrtransfer Extension\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"8fadff19781b34ab246a15a5c222fd6af53ea93f7778fbf933d1ccd082f3e362\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/acrtransfer-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"acrtransfer-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"KraterDev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/acrtransfer\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"acrtransfer\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Acrtransfer Extension\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"668b94d0341b663a610212f318b899a53be60ae0eb59c47e162f5dabd3483551\"\n + \ }\n ],\n \"ad\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/ad-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"ad-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ad\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"ad\",\n \"summary\": \"Microsoft Azure Command-Line Tools + DomainServicesResourceProvider Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"61df234e10759e9916c1d447ab02b82637de10fd97c31a17252e1f5183853883\"\n + \ }\n ],\n \"aem\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/aem-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"aem-0.1.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.30\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"yugangw@microsoft.com\",\n + \ \"name\": \"Yugang Wang\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.29.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aem\",\n \"summary\": \"Manage Azure Enhanced Monitoring + Extensions for SAP\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"4ac7b8a4a89eda68d9d1a07cc5edd9b1a2b88421e2aa9a9e5b86a241f127775f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aem-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"aem-0.2.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.30\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"yugangw@microsoft.com\",\n + \ \"name\": \"Yugang Wang\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aem\",\n \"summary\": \"Manage Azure Enhanced Monitoring + Extensions for SAP\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"3ae49bb9f6b07cdaae840079c95e3d30c7e8bc27ba68d542e8e122cf4c14ce00\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aem-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"aem-0.2.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.19.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"yugangw@microsoft.com\",\n \"name\": + \"Yugang Wang\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aem\",\n \"summary\": \"Manage Azure Enhanced Monitoring + Extensions for SAP\",\n \"version\": \"0.2.1\"\n },\n + \ \"sha256Digest\": \"fb11a2b2b46c5bae831216969bc333a74c7f2a1f77fb8fae7427b911d27bdd41\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aem-0.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"aem-0.2.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.19.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"yugangw@microsoft.com\",\n \"name\": + \"Yugang Wang\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aem\",\n \"summary\": \"Manage Azure Enhanced Monitoring + Extensions for SAP\",\n \"version\": \"0.2.2\"\n },\n + \ \"sha256Digest\": \"4019ccd9d3bfef853bbe31bc178e07ea1d132a8dea6e6931f917c0d4b0130d13\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aem-0.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"aem-0.3.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.19.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"yugangw@microsoft.com\",\n \"name\": + \"Yugang Wang\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aem\",\n \"summary\": \"Manage Azure Enhanced Monitoring + Extensions for SAP\",\n \"version\": \"0.3.0\"\n },\n + \ \"sha256Digest\": \"25aaf9006ab1d115d7c484cfda1c9ad0e3617af6d2140db87499aaea81b67ff8\"\n + \ }\n ],\n \"ai-examples\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/ai_examples-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"ai_examples-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.81\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.5\",\n \"Programming Language :: Python + :: 3.6\",\n \"Programming Language :: Python :: 3.7\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"mabooe@microsoft.com\",\n \"name\": \"Matthew + Booe\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ai-examples\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"ai-examples\",\n \"summary\": \"Add AI powered examples + to help content.\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"3bf63937122345abe28f6d6ddcac8c76491ae992910a6516bcb506e099e59f8b\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ai_examples-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"ai_examples-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.2.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.5\",\n \"Programming Language :: Python + :: 3.6\",\n \"Programming Language :: Python :: 3.7\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"mabooe@microsoft.com\",\n \"name\": \"Matthew + Booe\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ai-examples\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"ai-examples\",\n \"summary\": \"Add AI powered examples + to help content.\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"1e976b938f377e35618525154b46725fa66f17883a6fb233fb2f9d427a34421b\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ai_examples-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"ai_examples-0.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.2.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.5\",\n \"Programming Language :: Python + :: 3.6\",\n \"Programming Language :: Python :: 3.7\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"mabooe@microsoft.com\",\n \"name\": \"Matthew + Booe\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ai-examples\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"ai-examples\",\n \"summary\": \"Add AI powered examples + to help content.\",\n \"version\": \"0.2.1\"\n },\n + \ \"sha256Digest\": \"f45d5a3726924c8a7ae03f2fce1ea4c0221291cf5c815dd54bbc7cd867f1edc2\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ai_examples-0.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"ai_examples-0.2.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.2.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.5\",\n \"Programming Language :: Python + :: 3.6\",\n \"Programming Language :: Python :: 3.7\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"mabooe@microsoft.com\",\n \"name\": \"Matthew + Booe\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ai-examples\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"ai-examples\",\n \"summary\": \"Add AI powered examples + to help content.\",\n \"version\": \"0.2.2\"\n },\n + \ \"sha256Digest\": \"6f5da7c8783d6c295b0bc290284609d2e4d60618e208529ec224cde6137254e7\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ai_examples-0.2.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"ai_examples-0.2.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.2.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.5\",\n \"Programming Language :: Python + :: 3.6\",\n \"Programming Language :: Python :: 3.7\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"mabooe@microsoft.com\",\n \"name\": \"Matthew + Booe\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ai-examples\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"ai-examples\",\n \"summary\": \"Add AI powered examples + to help content.\",\n \"version\": \"0.2.3\"\n },\n + \ \"sha256Digest\": \"b4e02c629f2d5613553460c0c1923d638753b355cda5cd7e6ed11b573eaf6d01\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ai_examples-0.2.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"ai_examples-0.2.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.2.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.5\",\n \"Programming Language :: Python + :: 3.6\",\n \"Programming Language :: Python :: 3.7\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"mabooe@microsoft.com\",\n \"name\": \"Matthew + Booe\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ai-examples\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"ai-examples\",\n \"summary\": \"Add AI powered examples + to help content.\",\n \"version\": \"0.2.4\"\n },\n + \ \"sha256Digest\": \"acb73b45ea35b909a0e25ca8757a1434d9ba109ebb3d54698850f5258e76132c\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ai_examples-0.2.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"ai_examples-0.2.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.2.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.5\",\n \"Programming Language :: Python + :: 3.6\",\n \"Programming Language :: Python :: 3.7\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"mabooe@microsoft.com\",\n \"name\": \"Matthew + Booe\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ai-examples\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"ai-examples\",\n \"summary\": \"Add AI powered examples + to help content.\",\n \"version\": \"0.2.5\"\n },\n + \ \"sha256Digest\": \"badbdf5fc2e0b4a85c4124d3fc92859b582adf8f30f5727440ce81942140099a\"\n + \ }\n ],\n \"aks-preview\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.36-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.36-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.36\"\n },\n + \ \"sha256Digest\": \"ea288c9a118ff077caba6110c395864f5c569d87ab395f02a1b11eefd00d3db6\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.37-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.37-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.37\"\n },\n + \ \"sha256Digest\": \"80d04f0d477b987dd462e6c1fb3fdbe7441c7ea1e3c75fb8593847d43b4a1e3b\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.38-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.38-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.38\"\n },\n + \ \"sha256Digest\": \"1ded28b781b6be42b7006fa1a9784d33a90cef43690034dfd22f890519737570\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.39-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.39-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.39\"\n },\n + \ \"sha256Digest\": \"0fdcf5377dcd987221405a3cce324cf823d6f22f0cedd0ea6dc7e3b357be50c4\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.40-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.40-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.40\"\n },\n + \ \"sha256Digest\": \"ea0e3e82ed682134734460b8a6489c4e586cfca97706cc2037d9ace16491c286\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.41-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.41-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.41\"\n },\n + \ \"sha256Digest\": \"f2c6b7d062f3798400b274926e70123fe02ea8bd6a94f645bbf5c1474ce42e33\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.42-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.42-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.42\"\n },\n + \ \"sha256Digest\": \"8b7b592b640b4e46410cf97600106c277506403487e083a3496c33c634e63a06\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.43-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.43-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.43\"\n },\n + \ \"sha256Digest\": \"d351dc69bac520400beffaa571dccdd1fd37534c28309fa703ae59802d25cad5\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.44-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.44-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.44\"\n },\n + \ \"sha256Digest\": \"544d8dbab694fd5a2e04a1cac310e36881682e309c5df772f037451e3d7da51c\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.45-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.45-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.45\"\n },\n + \ \"sha256Digest\": \"78b8536cf5b4349d47a3d1742d36514f99780ef8eff31336d8cb5dfc2e5c6080\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.47-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.47-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.47\"\n },\n + \ \"sha256Digest\": \"042b4acfecdc98059907abce1224c0865f1a61abd566fdc00e09a61436a52e27\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.49-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.49-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.49\"\n },\n + \ \"sha256Digest\": \"ccd0ec11a5fe08427547eb65111ab5c4bab5a59d2eb8d90173d3afa242260518\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.50-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.50-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.50\"\n },\n + \ \"sha256Digest\": \"4c00426e0e993c1a1205a9e09500025cadf287b5ba9c7248027bd91922a94688\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.51-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.51-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.51\"\n },\n + \ \"sha256Digest\": \"60db16bbf0149d80545044dbcb6a353822f867876b2a2547e584432775bd2bf7\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.52-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.52-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.52\"\n },\n + \ \"sha256Digest\": \"7ca39f7f93274649857adc648ae2c7f971d846a99917e6c42b514075d19eb93f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.53-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.53-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.53\"\n },\n + \ \"sha256Digest\": \"8a71bf3f14338831750c4d086be49b09dbc65e40aedbbc9bc8c558ca8dcb1b21\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.54-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.54-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.54\"\n },\n + \ \"sha256Digest\": \"a12d1907641e8212e0fb4e5f2a6eb85154252a2cd92a1539bf7b809c3b3aa840\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.55-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.55-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.55\"\n },\n + \ \"sha256Digest\": \"d6fa0ec6dfffa82941d9b93415b317f5aee42191c3f6193fbc5842f36822cc48\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.56-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.56-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.56\"\n },\n + \ \"sha256Digest\": \"b03984389a701e3bdfd0327a5428e2b73394daadca15c072173efd367cc7350e\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.57-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.57-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.57\"\n },\n + \ \"sha256Digest\": \"2f80ce7345874f6dc791c25b59bfccdd8d1df2fc5a58eee89c12d5bee36e09f2\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.58-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.58-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.58\"\n },\n + \ \"sha256Digest\": \"6c0e9eeff259f87d5db5deab028bd0c875103d4f94af3b4f872167330de14c2d\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.59-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.59-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.59\"\n },\n + \ \"sha256Digest\": \"33f4caf55366ac68d8b914bf0d06b695ea90d37ea1a26752c5c4ce7345f60b7d\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.60-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.60-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.60\"\n },\n + \ \"sha256Digest\": \"5baa213387c341a054dd8bc8a610f6f4ce0507d5fb1b96b13b0025c1cffb32a3\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.61-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.61-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.61\"\n },\n + \ \"sha256Digest\": \"e40833b2de89ae4884d0d88741ed6949d6a3b8e970c946e1ff4aed1ca5215b57\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.62-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.62-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.62\"\n },\n + \ \"sha256Digest\": \"41538793759b3aae977c3c0e6263a271b20ea130467d89c0dee19877198f0703\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.63-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.63-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.63\"\n },\n + \ \"sha256Digest\": \"ad7e574b1728797189c3e7185ff56e09e835086bd8876c4ef8cbdc54ffe1bc77\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.64-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.64-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.64\"\n },\n + \ \"sha256Digest\": \"507a299bddcb9199f589be12ad0761e03c8386ed2b4ca26782199e9c1f18bf49\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.65-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.65-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.65\"\n },\n + \ \"sha256Digest\": \"3c1d2f8daedab5d6e6adea1ee1f0222be411f64b2b960ce270feb2aa5955145f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.66-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.66-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.66\"\n },\n + \ \"sha256Digest\": \"ff66452ee3ea3bd31da976107f59006a11ada4e565328fdd56c36c876680b826\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.67-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.67-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.67\"\n },\n + \ \"sha256Digest\": \"1ae0b48d36ea387f25311bbd24f3170c98ed2e3fd1d2a8d07ed32759f0d92828\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.68-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.68-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.68\"\n },\n + \ \"sha256Digest\": \"a281f668a6a9aca42b30fe81914621cce0b7ed8b5dc6c011d299f81ab7c213aa\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.69-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.69-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.69\"\n },\n + \ \"sha256Digest\": \"d670fa4333caf852f4fb298cac96617f24101af8a01af505eb6730936280598a\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.70-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.70-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.70\"\n },\n + \ \"sha256Digest\": \"ae85aefb746698433f3175f87ab8f53c866aafd5f4d68d7277336e6bedeaffd8\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.71-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.71-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.71\"\n },\n + \ \"sha256Digest\": \"a122cfbcc9eb43d3e89e4a19e7f7641e95d6c3184e486bf790b6cdd088c98c79\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.72-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.72-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.72\"\n },\n + \ \"sha256Digest\": \"5d8ec45db6137170926753fe13f7afa8bc66b7b2d8e1af420bb4615b20b471bf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.4.73-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.4.73-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.4.73\"\n },\n + \ \"sha256Digest\": \"d5cd928c82d0f65dbdefc651b2925bfba8710d14d9ecb2aab50ce3b6b461a3c5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.0\"\n },\n + \ \"sha256Digest\": \"abb67e21afe5760a77dc90832ff3790da7041e19240b5e16829b27562b538917\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.1\"\n },\n + \ \"sha256Digest\": \"18a96ea0a9a7402715bd8896901e9b9b1a69ae40f8791755337178fdb3d2dd8b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.2\"\n },\n + \ \"sha256Digest\": \"8a0d406acb640b0f9e2a5c2aba6ec1038aa14178e28cacb07f213127da4c7d4a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.3\"\n },\n + \ \"sha256Digest\": \"a5ee5bd051e5e3909dd84593ff6c5ae9aa37eb4fd68ffa23db1011894c15ba9d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.4\"\n },\n + \ \"sha256Digest\": \"9d917bb16488f2e0c07b8448675105ce726e836f3070cb1669394ce174893ec4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.5\"\n },\n + \ \"sha256Digest\": \"17a72fbfd8ddafbe11cedadb5f2fd9b514d700ecc3854ece5c257c5c7e443182\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.6\"\n },\n + \ \"sha256Digest\": \"70552c8f2eb4c60d7de4f2ed9225c16757c6f1978fa0a091d83ab74a748155a5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.7\"\n },\n + \ \"sha256Digest\": \"3721871ac87368c30bd8dfbcd6ff745bb4254f9b2daff651ba3de892dfd15067\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.8\"\n },\n + \ \"sha256Digest\": \"c32a30d83efeee2cdb23e5dccf1d86788835bcb8947d6ba838fab63d97409bd5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.9\"\n },\n + \ \"sha256Digest\": \"8e9f36f5ee8f07e3d7f24de3ffe11aa82ba1af4b135286cf3e463d8d6d7e5ab3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.10-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.10\"\n },\n + \ \"sha256Digest\": \"2dc5f15206e44d509d1a6738ee7b24bd3bba20d2a184d9fd93423affb346abdc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.11-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.11-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.11\"\n },\n + \ \"sha256Digest\": \"9eeda4d792219e1745948103bd6f0677a724553708ba1ccf49ca484181939f07\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.12-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.12-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.12\"\n },\n + \ \"sha256Digest\": \"9d7f0941b2e1e765cd48cee7b7502a035d65385ddce9d210ccdf6ef68519b4e4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.13-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.13-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.13\"\n },\n + \ \"sha256Digest\": \"54409bfe6bc1b8c34183eea46624973cb6c53acf6b11b5665cc21b229da17156\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.14-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.14-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.14\"\n },\n + \ \"sha256Digest\": \"635f9a1ed5cd480da0e730ddd3116bc352997120aa1feff1b3972067460bbc9f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.15-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.15-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.15\"\n },\n + \ \"sha256Digest\": \"c5bc6296b75fcdaf2a499d34dfa184d6cdeda7a8abaf1306fd758dd04804e621\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.17-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.17-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.17\"\n },\n + \ \"sha256Digest\": \"add861fdea86d7789a0680a3db61fbc32736849c137eb043cb4496f1ee07b742\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.18-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.18-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.18\"\n },\n + \ \"sha256Digest\": \"5cdb117cd30f743c092131bf77e8a699ba4e62bdf7f60a987b5e04387a57ccec\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.19-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.19-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.19\"\n },\n + \ \"sha256Digest\": \"ea42777c9a90295667bc3dc2154f3f3c9f122f884fd7dea661d4948d81dc0b63\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.21-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.21-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.21\"\n },\n + \ \"sha256Digest\": \"8035103b7eb04451b596d70d03f7b1685418e6679c143db5cf6ca70d91e65848\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.22-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.22-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.22\"\n },\n + \ \"sha256Digest\": \"d9673c7d1496e2d85d2b15ad1fc7b2e24101517d8714c4a1cc9f86175cf395a2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.23-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.23-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.23\"\n },\n + \ \"sha256Digest\": \"1d5ad0d8d49f0cf13ffb65cbb3a60651dfa87a8b8b9537f7d9574d4bdc68c1d6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.24-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.24-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.24\"\n },\n + \ \"sha256Digest\": \"4f2e624cc8e1a9ef653295b563d883f2fe58016ca1ba5b45485f17d60d410de7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.25-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.25-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.25\"\n },\n + \ \"sha256Digest\": \"67e35a0b44ffa2c73c98e0ef8604705302707a383b1ffe37a5a9368f2d2a24bb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.26-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.26-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.26\"\n },\n + \ \"sha256Digest\": \"b0653d61f1b26184f2439bef551fb42055f9509ec4f4a3e805d20bce2f382cf8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.27-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.27-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.27\"\n },\n + \ \"sha256Digest\": \"327010762d4953215b870434fafd0f64f7c46bf6d41eafe147a7de202331e3d3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.28-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.28-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.28\"\n },\n + \ \"sha256Digest\": \"6242d3de31d9fb51d7385e4b8b4880806a6df7057d552914ae114d6445440b9e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.29-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.29-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.29\"\n },\n + \ \"sha256Digest\": \"4b433b98716ceb98545a1031ac06284ed06cdb454af009e486a30b32ec07b176\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.30-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.30-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.30\"\n },\n + \ \"sha256Digest\": \"c7a0e4838eebb2a6ee5fafa97c361b73ccb66440e1e27f8d10b241de36c82afd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.31-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.31-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.31\"\n },\n + \ \"sha256Digest\": \"fed778a52ba3233267c1a957e59d6b62f40dfaac4483c3285fb1747659a180e1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.32-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.32-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.32\"\n },\n + \ \"sha256Digest\": \"d2267981145c8c7494d0b74ed6e0629ebff46e44b632d5936c01eee885c0f9a3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.33-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.33-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.33\"\n },\n + \ \"sha256Digest\": \"a087c366a73df27aa0950067649a75cfb08432e331f95d497915e62c5291f59e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.34-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.34-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.34\"\n },\n + \ \"sha256Digest\": \"32a00c0a498ca140540ffd4a33685cbf9f188bee23c9b75d47a12ca342420102\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.35-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.35-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.35\"\n },\n + \ \"sha256Digest\": \"ae1c4eb5688de501f34a1125495f012ddd6445aea1f4da3ac9b81d52c019a309\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.37-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.37-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.37\"\n },\n + \ \"sha256Digest\": \"9f5cd1a94360c156d4baef8a7c8c6230f291807caa4857528ba57ff99ff5772d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.38-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.38-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.38\"\n },\n + \ \"sha256Digest\": \"8f3711491f7f6952e6cf50f517de94a0a3380c906f8e3a1c67e917c3ec63b7ad\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.39-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.39-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.39\"\n },\n + \ \"sha256Digest\": \"249d7eacc77ec774ab656b4cc8bda7e0d9a1790ff7ec9851a3869f3dc3357869\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.40-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.40-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.40\"\n },\n + \ \"sha256Digest\": \"6fb60461a49eb3534343eab73a665edf0dc3fa38f6e77972a15442fe35ef7ef5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.41-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.41-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.41\"\n },\n + \ \"sha256Digest\": \"031601c9ef162925ab378ba7e86b843f258b8feddfe8e52bb8d4d6896d7504d8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.42-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.42-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.42\"\n },\n + \ \"sha256Digest\": \"70b557f454023cd8300da0081f34c97f8ab142d2a867507cc356d5d45e2f6585\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.44-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.44-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.44\"\n },\n + \ \"sha256Digest\": \"bf9b38c16159417372b85e10874554ccc08b3a1d545ac098d864d88c832293e8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.45-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.45-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.45\"\n },\n + \ \"sha256Digest\": \"dce3edd35e9467e64db64ea6fe69a3360f51be02fcf273126c77bd2a79bc43c7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.46-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.46-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.46\"\n },\n + \ \"sha256Digest\": \"9f811e0176fb309f40c0a6a2cfbd50c27aa4c19a80f518ad100e232c382da336\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.47-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.47-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.47\"\n },\n + \ \"sha256Digest\": \"a3d03b2ad7ae74468556b8142252e9e51f70e50ce5b1685c8188930b1e43a4ef\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.48-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.48-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.48\"\n },\n + \ \"sha256Digest\": \"f253e1df741ca7a9b22fef56a362606f9cd7f9e79d52d25fe36a8f76a2c0b52f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.49-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.49-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.31.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.49\"\n },\n + \ \"sha256Digest\": \"8ee88b5673e5d0b69176f8e6b1b5402854b6b28b763e749251414d3801650259\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.50-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.50-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.31.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.50\"\n },\n + \ \"sha256Digest\": \"1ee3571431ef61e5c66bc92ca9927b97d0eaf37e0c9290e55744fcf8bd8cf552\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.51-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.51-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.31.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.51\"\n },\n + \ \"sha256Digest\": \"9908869553f8438a8f184586396e2f2013871bbf49063b95a2ee4d354c539912\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.52-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.52-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.31.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.52\"\n },\n + \ \"sha256Digest\": \"9446d0056caeabbfbac6a47ac88fdb67757db285c7063b5e8074befbc56338d0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.53-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.53-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.53\"\n },\n + \ \"sha256Digest\": \"d8e85ba210d276b5caee4d8049b1e0e3ea5b55d6b319a630cf2e523305e6e6cc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.54-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.54-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.54\"\n },\n + \ \"sha256Digest\": \"957461fa774e2f4a041464a1c82b77edd6b380c6e77ae7a4ae84fba6402380a3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.55-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.55-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.55\"\n },\n + \ \"sha256Digest\": \"6dffcadb2091abab3e6c682dcac05a8149f6887e04550342e1ae33109fd4266f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.56-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.56-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.56\"\n },\n + \ \"sha256Digest\": \"113eca94a2bda03fea6810bffbed83c1e1c5ab91d38b40001e8bab320d6449e2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.57-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.57-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.57\"\n },\n + \ \"sha256Digest\": \"ef52483bd0f162fcc1fc0cced91a5804956c202bf0d3559e48f76a26241ace36\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.58-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.58-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.58\"\n },\n + \ \"sha256Digest\": \"9ad0566d2719940ac927723e65fd79586eae3ce86190b52cfcda3286c98ee30d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.59-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.59-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.59\"\n },\n + \ \"sha256Digest\": \"24253eef69ebb4622873771959e33b25d9612f3303cc924c84f8d6e175420f69\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.60-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.60-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.60\"\n },\n + \ \"sha256Digest\": \"c3d1861f4bfa276d714448198b71f482b26538162f0724bb5686343a084a0de6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.61-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.61-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.61\"\n },\n + \ \"sha256Digest\": \"98f1c161076a1b17889069fd8b654c4be14b5778088cf46a834d6be2a580dca7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.62-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.62-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.62\"\n },\n + \ \"sha256Digest\": \"d1c27a01a402f252e01016181cf988a6da125d120bff168c4b4e85f994215d56\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.63-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.63-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.63\"\n },\n + \ \"sha256Digest\": \"cb5ca46f649303009a52c84ec1a9e8efc788e6e80989e07541f03c4edf02cc93\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.64-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.64-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.64\"\n },\n + \ \"sha256Digest\": \"377db46a822434677059bae8f8584e408d42ba951a7e8b688e50579236864faf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.65-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.65-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.65\"\n },\n + \ \"sha256Digest\": \"df53989fd97f37b5feb6bd54dca9c11308cd8ac6c77e012efccfb4c0111c2f18\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.66-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.66-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.66\"\n },\n + \ \"sha256Digest\": \"82026c5aafd8f0c7f5e72524e708a4ed5c6485b574686d0cdded1104f20a82b3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.67-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.67-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.67\"\n },\n + \ \"sha256Digest\": \"5bedccad76afa1af2196feea59de05fce27d6e917bd6580793ea553399bc2cd5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.68-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.68-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.68\"\n },\n + \ \"sha256Digest\": \"0501655b210d9b4d8812c9b1820f4860c9e26aa839652c6265ab201dbcfb46d6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.69-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.69-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.69\"\n },\n + \ \"sha256Digest\": \"371eec5e3dda3fd7b6ade5274603887bb2113c8e1833a30d49b08a413f3dede4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.70-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.70-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.70\"\n },\n + \ \"sha256Digest\": \"b209c35cf11c76b71a751d727d05cd29b9c4d946bf3ff61d1c51284c83292f9b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.71-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.71-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.71\"\n },\n + \ \"sha256Digest\": \"7d9550c43140a2eb110addfea27ff8a37d08e1f007a439e77e76ba93110ea38c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.73-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.73-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.73\"\n },\n + \ \"sha256Digest\": \"aea0f83dbc8a9aa258a1a64446118919d629d66a0836d3fc800a0f726dda65a2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.74-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.74-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.74\"\n },\n + \ \"sha256Digest\": \"2e6afcc3ababf020e0d4debe8c21334f91f52e8ada3b76261c3a5cda3a7c4462\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.75-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.75-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.75\"\n },\n + \ \"sha256Digest\": \"3e6ec892b290606c3c7d504883e5bac1a29cdfd3bb98ba95ac2575dd2f3b81b2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.76-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.76-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.76\"\n },\n + \ \"sha256Digest\": \"daeef61715beb0aad8387286c324dd6450d3ab6cc731476b182a8a70c1d5997a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.77-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.77-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.77\"\n },\n + \ \"sha256Digest\": \"35008db1e3d6e9ae6c409ed0749a37f6fddec6223aa8cefa0e7245af5f81c95a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.78-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.78-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.78\"\n },\n + \ \"sha256Digest\": \"a98ecf3b74dae40025d90c8fa152341897682b3647964fd4876545c71b1aa186\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.79-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.79-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.79\"\n },\n + \ \"sha256Digest\": \"e00adb76107a1daf813b7469392cc42f54dfe37a13f300e0e3f5fb59604a1a7a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.80-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.80-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.80\"\n },\n + \ \"sha256Digest\": \"b2b6b10bea7eb3e667b6d3377be2c901c8a707de4a29fea5b5e4e2c5a79ea465\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.81-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.81-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.81\"\n },\n + \ \"sha256Digest\": \"cd513d21399b00621fe54b3cef4e5736b521d89f4233d01020efe8a1fb2a029d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.82-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.82-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.35.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.82\"\n },\n + \ \"sha256Digest\": \"0d92faa3baf8df81f784efe3c719f915fc846e0f5a1b5884477b28bc19a3dc5e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.83-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.83-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.83\"\n },\n + \ \"sha256Digest\": \"01a9cba4d6553f8dc21a8bc837db19761a61c683ddbd72383071030edb5fa806\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.85-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.85-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.85\"\n },\n + \ \"sha256Digest\": \"1b67fa76d283eee75bb135dc4e4efd9640364a84cd9c0786d6311090b8d9b8fd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.86-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.86-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.86\"\n },\n + \ \"sha256Digest\": \"6d35edb29885d02dce1c27d3fc16280239b288151984ac9b84f7d0de8ba44b61\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.87-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.87-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.87\"\n },\n + \ \"sha256Digest\": \"74b0bdfee2818757cafb88edec216446e71bf0f56c9365a387966ef0490bcbfc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.88-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.88-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.88\"\n },\n + \ \"sha256Digest\": \"6794b2151eae3176e8db725a786201606afb4d2e94a76201e21652f2a19d0a4c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.89-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.89-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.89\"\n },\n + \ \"sha256Digest\": \"e7f1b203399906812680aaed0e3f6e21000967e0699482d97e1c449035a8bc6a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.91-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.91-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.91\"\n },\n + \ \"sha256Digest\": \"08de921452dc174603c794405373819a7bda972c8a3307f81e17e9ad4f369f80\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.92-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.92-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.92\"\n },\n + \ \"sha256Digest\": \"6855d7fcdfce7119d799a010f9c50e5aa0132b06581ef84e6d3cf43871691abe\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.93-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.93-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.93\"\n },\n + \ \"sha256Digest\": \"3a49835718b33330fb33256a4dfbfe49bc6b507fb37c48e51d20a7588753f2cf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.94-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.94-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.94\"\n },\n + \ \"sha256Digest\": \"2dd0f45bcb79b72eaf418577a927331db48bb15a1743cb9f66fd0642960b9e8d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.95-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.95-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.95\"\n },\n + \ \"sha256Digest\": \"6f6a946f84e00dfe9d4625ec0e7d927be93ed6ecf5b99ba7c4b146c946ec4672\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.96-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.96-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.96\"\n },\n + \ \"sha256Digest\": \"908a79b3da57b3615f45cc9e201249942894d32983b9b94f1a5996e3b25d2e6b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.97-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.97-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.97\"\n },\n + \ \"sha256Digest\": \"c0a5a5a605cbf1fa158aab8566f8fbb51879a9ee0465ffc40f164040c37cebcd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.98-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.98-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.98\"\n },\n + \ \"sha256Digest\": \"0299269b7b1c9646d2ceafd2b29eeefb371fe1d4f15d55078afd4830d019c7d8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.99-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.99-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.99\"\n },\n + \ \"sha256Digest\": \"d6f0130ea6949e312cdf19c6f628847734bc14817a731e228015979afeda20ec\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.100-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.100-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.100\"\n },\n + \ \"sha256Digest\": \"1bf97307cd519f0d00a457242e1d610ea018d19480a5d2d4ed0ef73b8e179169\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.101-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.101-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.101\"\n },\n + \ \"sha256Digest\": \"1e5144540998b973acbb75a2c68896681b1a2b094216e6316391a1d6bea3103e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.102-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.102-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.102\"\n },\n + \ \"sha256Digest\": \"da3db3c239bc960a536b79bf4797b75ba765da31e066ad56dbedff00aab22172\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.103-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.103-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.103\"\n },\n + \ \"sha256Digest\": \"c0ca8f11a7bd40fe6793c85c571bc0bacb76645f8f0a73967173b14f4be2463b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.104-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.104-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.104\"\n },\n + \ \"sha256Digest\": \"a1eea0c50c624f45143aa55b26934af0d9a5f7a19ac9b26942deb13515fe6ab8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.105-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.105-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.105\"\n },\n + \ \"sha256Digest\": \"27191e8cf1baa2349028e693b4df3f78fec190da0e84ccbf7bc1efeffaa57c6d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.106-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.106-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.106\"\n },\n + \ \"sha256Digest\": \"782279fdb8f799d8e1220f878692875320af639942023c0b03dfdfd5d80added\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.107-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.107-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.107\"\n },\n + \ \"sha256Digest\": \"ba55241d5566bd0a888e6c01466a57bdf8f413e5c51456db2cd7ffddf163ef8f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.108-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.108-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.108\"\n },\n + \ \"sha256Digest\": \"e2d2b9d407cfb3ce44c5565ac9ce20ced6edf25075c31d9f8a2658993b158510\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.109-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.109-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.109\"\n },\n + \ \"sha256Digest\": \"b17d2536b555d6f6f3381a11003d284aa4cd29906975ab3fe47d40dc39b8aaa0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.110-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.110-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.110\"\n },\n + \ \"sha256Digest\": \"eb0922cd4f404db8fc064c315ee86bdb750b9389e0a2513d04fa535855b410bb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.111-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.111-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.111\"\n },\n + \ \"sha256Digest\": \"7da4a7815d1f192f1e5c1172e732956ddfaa9d218856188b9ce5906040b21fbe\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.112-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.112-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.112\"\n },\n + \ \"sha256Digest\": \"b33d01bc5ba13d5932951e577ede76d97aa6d3fad88dcabe1b786b3f12476eff\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.113-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.113-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.113\"\n },\n + \ \"sha256Digest\": \"033c6189f4ce704653e4f9ef880ccbedecd478d652922cdb16a604f0fcdd6cc2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.114-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.114-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.114\"\n },\n + \ \"sha256Digest\": \"364f6267114f199a6c1f9b5362826f6f14c924c21b9587e4dc5ca90c49ec3d6e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.115-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.115-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.115\"\n },\n + \ \"sha256Digest\": \"9e439856742f46e8a8c5b3943f6b777ee88f57d17328fb5e4b1fe3c3fd21c090\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.116-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.116-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.116\"\n },\n + \ \"sha256Digest\": \"45abf043ba212a690a6c4aff76e9ade1a1837ce68f1bb580967b96dbe2e9aeca\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.117-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.117-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.117\"\n },\n + \ \"sha256Digest\": \"ba691e46614a854c4f3a9d899354f845d0e858b1be364f33c8317b0f46b34c3f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.118-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.118-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.118\"\n },\n + \ \"sha256Digest\": \"009365c9ec95eb5a43097855d97d3a14e90653d9c76c268dd17da226f7f70c2e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.119-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.119-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.119\"\n },\n + \ \"sha256Digest\": \"c8b50ac78a54a293caf2065a64b309f14934f2f953b50b2606670865942b6a8d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.120-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.120-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.120\"\n },\n + \ \"sha256Digest\": \"80fa490cd015d3393cab6edfc6e6a7aa1f00648b3f0f9274f7c1c1f989042e0f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.121-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.121-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.121\"\n },\n + \ \"sha256Digest\": \"ebbf8d856bcb1fc9029473015665258d9e1732f3d05aa28c6dd07a0d5810af84\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.122-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.122-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.122\"\n },\n + \ \"sha256Digest\": \"8c986496fe32418802a134cd844b4a6414f52cbe60270d08d9dc3d44be64c598\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.123-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.123-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.123\"\n },\n + \ \"sha256Digest\": \"b27f427aa2af44805a108af291a0c87db6caae2fd1206743f5005cf89fa7b858\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.125-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.125-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.125\"\n },\n + \ \"sha256Digest\": \"5965b8105fc2ad546961ef02136422e1dbc399755f371d005e145615dba61649\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.126-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.126-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.126\"\n },\n + \ \"sha256Digest\": \"bd8b6ac2ab0800a0ecff4f06b8afec19cc3b463dc951b1f02a06449585b78a9a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.127-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.127-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.127\"\n },\n + \ \"sha256Digest\": \"2d38c18442369e6295f14e68d12eadfc24deb6d9458b735accc623c447fd52ed\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.128-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.128-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.128\"\n },\n + \ \"sha256Digest\": \"1156f159e8c1b16284b930487a1284aca1ded1dbc8d21a6cbf5cddcdc625767a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.129-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.129-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.129\"\n },\n + \ \"sha256Digest\": \"49e50e7fd43b285880af9c6b17d1c3bddd316fdecf555eb473388c200423970e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.130-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.130-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.130\"\n },\n + \ \"sha256Digest\": \"6e224106eb13daaea1336044f07b03fd8ef10bb42b9b21c11818dda148b2ab43\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.131-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.131-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.131\"\n },\n + \ \"sha256Digest\": \"e8667cb199cb25394d237b3ced6c36195b67c00481a2145e2220878cb616c7bb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.132-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.132-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.132\"\n },\n + \ \"sha256Digest\": \"2d3329d0ba04aa1c68a952b29c54f90e9cf1abed85c0f1a51a6eb302c87fc187\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.133-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.133-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.133\"\n },\n + \ \"sha256Digest\": \"eaee3b3ca9f13d4153597476f9a45ca5fd00d8b4e02e01ca1cc07c937525a41b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.134-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.134-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.134\"\n },\n + \ \"sha256Digest\": \"3fa34226198f09bc38d36248893f08662d183c8106006ffae912dbf1d4b351ee\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.135-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.135-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.135\"\n },\n + \ \"sha256Digest\": \"eb0b780c84f51cbbe48f037e388b2be95692bd2d5c36daf53faa8f5251ec7ae5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.136-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.136-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.136\"\n },\n + \ \"sha256Digest\": \"3901766ce0200e6dfed5d1f877a27036b57732caf2f0a3955a7aeb7c5183dac6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.137-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.137-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.137\"\n },\n + \ \"sha256Digest\": \"37c4ca90690b6e48c1ae52e7e0912eee4cbb1a10c9953e2de2fc3a9926186294\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.138-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.138-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.138\"\n },\n + \ \"sha256Digest\": \"344a05b128c2dc402e4307843c8f67bb3101a207088eab66128a570684658a29\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.139-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.139-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.139\"\n },\n + \ \"sha256Digest\": \"7a79b661d0aab0a89b4ca8a4c9677f14bb5bf57b89850b6256cc6c120a2775ca\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.140-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.140-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.140\"\n },\n + \ \"sha256Digest\": \"89da9b212c448cf7161dad3abacfcd79c0a93a5e105713655f473f1c99be6184\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.141-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.141-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.141\"\n },\n + \ \"sha256Digest\": \"0b26ee8a6e84d1e546bdab8be66a809febef53c55d61084cb096c1493281fb82\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.142-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.142-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.142\"\n },\n + \ \"sha256Digest\": \"003c5a3fec5d73fa1ae557cce51b16d19950026a4fc7a16365c382ae7e400dbd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.143-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.143-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.143\"\n },\n + \ \"sha256Digest\": \"0babf8e7e8f77960cf7c7d97204e4ac521ceff58a1e46d15c2f8e9d80d114676\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.144-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.144-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.144\"\n },\n + \ \"sha256Digest\": \"15e12e2e4c345d92a5eecc6da160a1c766674a0ec322b865428fdbeb0483e2db\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.145-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.145-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.145\"\n },\n + \ \"sha256Digest\": \"f367662b934cf1a086ae81a5494146c0b408a321509561ca2be093688d2da3c8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.146-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.146-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.146\"\n },\n + \ \"sha256Digest\": \"e369e9c478b91ddd72bd9ac801a9acaca111f7add363c1e0691abc4aca91bb87\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.147-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.147-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.147\"\n },\n + \ \"sha256Digest\": \"75c40934415a76a71bac2680c80271c5a5a89aa5036e2c647925829055e15c83\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.148-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.148-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.148\"\n },\n + \ \"sha256Digest\": \"4ff9ebd66e8a51bb781fb9e76100b9bf510cc4a13cdee314ef8f63052674e897\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.149-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.149-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.149\"\n },\n + \ \"sha256Digest\": \"c1a7eb356edab7f496e6672f9516a3360303899dd479586458c37886a6c00b76\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.150-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.150-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.150\"\n },\n + \ \"sha256Digest\": \"19e2fdf3642656d05a470bb95370af5d72b9c6f8e11bbfa0ea7a5fb8702671ba\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.151-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.151-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.44.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.151\"\n },\n + \ \"sha256Digest\": \"839516b3d8e97525d13c594cce398e76848914a195cd351e6ac75c86dd07c4e6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.152-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.152-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.152\"\n },\n + \ \"sha256Digest\": \"d56a40e70dd03cf6b0b5ab548c2cd16b2fbd5340a4f37a232c0268be97b46786\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.153-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.153-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.153\"\n },\n + \ \"sha256Digest\": \"a4ed80aa9635ffc7672e9d7566915eeab873d7d038949437a2305bd1d5a26252\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.154-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.154-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.154\"\n },\n + \ \"sha256Digest\": \"fdff64768b5e34947cc304ad0a3d5436d63b984372c17c767be0ccf8edcc4dec\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.155-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.155-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.155\"\n },\n + \ \"sha256Digest\": \"be425161a4acfb0d24cc5f873bb5f4a03b486034a343e5d4516b714f0a19727b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.156-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.156-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"aks-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"openai (~=0.27.8)\"\n ]\n + \ }\n ],\n \"summary\": + \"Provides a preview for upcoming AKS features\",\n \"version\": + \"0.5.156\"\n },\n \"sha256Digest\": \"6039b99d31538b915d96f811d4a4583fb6240e5f314d581a46021a281784d245\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.157-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.157-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"aks-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"openai (~=0.27.8)\",\n \"openai~=0.27.8\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Provides a preview for upcoming AKS features\",\n + \ \"version\": \"0.5.157\"\n },\n \"sha256Digest\": + \"f8ef4d008ef13cfdb804fb9916c934753757348bc9fade4e02f0d7fa0bf1ba53\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.158-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.158-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"aks-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"openai (~=0.27.8)\",\n \"openai~=0.27.8\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Provides a preview for upcoming AKS features\",\n + \ \"version\": \"0.5.158\"\n },\n \"sha256Digest\": + \"e13d6eff3b0e74e96fce741c000d69fbea124a9b4febd6f0e34494fe86a4e99e\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.159-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.159-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.159\"\n },\n + \ \"sha256Digest\": \"5b3d055cadd3a0fb5623f7d6e04b1553761fae63413fded4e7c029d3c6bf72a4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.160-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.160-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.160\"\n },\n + \ \"sha256Digest\": \"32e84b12b661eee0f1b15433e9a1dc38009ece9faacc2f201c9f02d3cfc8a928\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.161-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.161-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.161\"\n },\n + \ \"sha256Digest\": \"7da4ad6cad48c5ecbab100827b634ee69dfee3a8f8918ddcf4258dbd6ff1207b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.162-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.162-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.162\"\n },\n + \ \"sha256Digest\": \"a7690e9a3b5fd0dd27e86ab029fd87e40073eec7ff4900c2d32a4a63b9e3a758\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.163-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.163-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.163\"\n },\n + \ \"sha256Digest\": \"c7569a43928962e7f71493e4bda8e0d86bda99a08c407b588d4f89d0c0bcb981\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.164-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.164-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.164\"\n },\n + \ \"sha256Digest\": \"5032d903c07476e91393c010b88eadd1d90328662f05403b1ba4a7f6a26e5a5a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.165-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.165-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.165\"\n },\n + \ \"sha256Digest\": \"7087be67431b8210e79c7fa795a0eecb4fb2f17fa47e3bd2dd6986a7fde2e298\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.166-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.166-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.166\"\n },\n + \ \"sha256Digest\": \"97ae1cdaec30d9e3c2bb55485776683ddc188883dd7a1ba0be576f6a763bfe0a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.167-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.167-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.167\"\n },\n + \ \"sha256Digest\": \"f45779ff6462c382842ceb936c0e2145ced9220b24fa20e7104d6312f2795908\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.168-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.168-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.168\"\n },\n + \ \"sha256Digest\": \"432ce3214cbf8521a4174ac7c327823c941e1dc01630391825eec4badd29b969\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.169-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.169-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.169\"\n },\n + \ \"sha256Digest\": \"67277604a05d72c5bf385e5c446850a42e61b3d9fb4502d2e1810e1b79f33348\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.170-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.170-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.170\"\n },\n + \ \"sha256Digest\": \"87e7aa897db9d90178a9066bf95291123fd856be246172807b0fefd0c14daee1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.171-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.171-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.171\"\n },\n + \ \"sha256Digest\": \"8f7565022cc1fe7303dffd1c45bd9d43089b0a07d3f93fbb497f1dda22b49760\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.172-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.172-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.172\"\n },\n + \ \"sha256Digest\": \"a80a939563355331e53c54297710ec3198de460d04d357351a6decee5e6a64d1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.173-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.173-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.173\"\n },\n + \ \"sha256Digest\": \"e81597d02ccbd2856b7fd9631e3414d63be64221d71c60dc6e1548c95487d6ee\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-0.5.174-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-0.5.174-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"0.5.174\"\n },\n + \ \"sha256Digest\": \"b3d5716a53bd13ac59226cd0f7758cc11f535d5044fb026f71d3f5eb269cb87c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"ee4bbc8d3c175d3aeea67506646d57860f2bd54ea049cf60c7e0e455bda6b283\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-1.0.0b2-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-1.0.0b2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"1.0.0b2\"\n },\n + \ \"sha256Digest\": \"50e8b8f4b2fd02c2085d410efee7558a10a5399aa6d8e2b5def62fdc2d860b16\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-1.0.0b3-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-1.0.0b3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"1.0.0b3\"\n },\n + \ \"sha256Digest\": \"b5823a278d7b7ab787e8469b6e5f4ce1e7983aac2e6ac79ba38a998da0f5d994\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-1.0.0b4-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-1.0.0b4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"1.0.0b4\"\n },\n + \ \"sha256Digest\": \"dd01c61e5fd22df8845159781a89f783a45e102a9a97acae5bed4a735a2dec6c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-1.0.0b5-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-1.0.0b5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"1.0.0b5\"\n },\n + \ \"sha256Digest\": \"75378ea07dea6fdadb115e41e8394003fd63282560648fa92d8f055f1e2536eb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-1.0.0b6-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-1.0.0b6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"1.0.0b6\"\n },\n + \ \"sha256Digest\": \"2d535ccdce575a5c3c4bd2aa9be1646d6227339d8142de593e5ab31b9d5018e0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-2.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-2.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"2.0.0b1\"\n },\n + \ \"sha256Digest\": \"099ed6855de6571395b7c5531cfbed6537d98dfdc2570ec31acf8f5958f53956\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-2.0.0b2-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-2.0.0b2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"2.0.0b2\"\n },\n + \ \"sha256Digest\": \"48ca4edfa81686a283930f58a43c459c3b18e7bd4dfc4782ab75659ec711f549\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-2.0.0b3-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-2.0.0b3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"2.0.0b3\"\n },\n + \ \"sha256Digest\": \"59fdd960108b7dbbae8d0d417adaf29a764ddab19c0c34c710be13b063d77214\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-2.0.0b4-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-2.0.0b4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"2.0.0b4\"\n },\n + \ \"sha256Digest\": \"1b5f13ef657dc05525ebcb1000340295a4453c6baeedbfca97ce5ba799486ff7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-2.0.0b5-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-2.0.0b5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"2.0.0b5\"\n },\n + \ \"sha256Digest\": \"de0ff3c4929fe33f9a1be37bbc3718493c57606088cee0a7acc3165ecf4c286e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-2.0.0b6-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-2.0.0b6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"2.0.0b6\"\n },\n + \ \"sha256Digest\": \"f99e03a78728eab8ee6fc6f3944d35719876baa4cce0d8642e6935bc6e127083\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-2.0.0b7-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-2.0.0b7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"2.0.0b7\"\n },\n + \ \"sha256Digest\": \"aeffac4ded4de3f4f0673c90c407ece117138da1e470da54759aa838624a2fe4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-2.0.0b8-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-2.0.0b8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"2.0.0b8\"\n },\n + \ \"sha256Digest\": \"a9896e58511fef1aa889316350c9a7b84176185fbdd7783bf43db401851096b4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-3.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-3.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"3.0.0b1\"\n },\n + \ \"sha256Digest\": \"2bec826c57c59f6b84e298118500006f2ec150d9c3d38b8f9fe3f7a75985a9ce\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-3.0.0b2-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-3.0.0b2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"3.0.0b2\"\n },\n + \ \"sha256Digest\": \"4930d07a7d69a83867c57c7328f87750534d92e9f9e53afc3cd768108fa722c8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-3.0.0b3-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-3.0.0b3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"3.0.0b3\"\n },\n + \ \"sha256Digest\": \"85c7f1a79fee3797933f6c18d89cb7f0e287b9678bc903c00db5f3456a04ef58\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-3.0.0b4-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-3.0.0b4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"3.0.0b4\"\n },\n + \ \"sha256Digest\": \"5d04fb35d81280a56ee96083ea18a04378b51df0d2b0b37ad0b22c842020b2e6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-3.0.0b5-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-3.0.0b5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"3.0.0b5\"\n },\n + \ \"sha256Digest\": \"6a91566e4fd41fa24805b4db78205923a5f36ac2e09b5eba773b648fcfafe879\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-3.0.0b6-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-3.0.0b6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"3.0.0b6\"\n },\n + \ \"sha256Digest\": \"afd115977bc8b4a46661772f290eea84ecfeae7df8663b0798e57d278b676a83\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-3.0.0b7-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-3.0.0b7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"3.0.0b7\"\n },\n + \ \"sha256Digest\": \"404cb196e85565eb99e79de72d608da60c1771db59ce3a3df4942625ea1d138b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-3.0.0b8-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-3.0.0b8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"3.0.0b8\"\n },\n + \ \"sha256Digest\": \"ea2ee7cabcd6a02a3d457b18e55d8cd8e2ee00675101be376471850873b46236\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-3.0.0b9-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-3.0.0b9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"3.0.0b9\"\n },\n + \ \"sha256Digest\": \"3d5e43cd1b92ef9abe959fd2aea3e3c66dbebe2cd22df6fdb8abcf7b6682bbd9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-3.0.0b10-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-3.0.0b10-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"3.0.0b10\"\n + \ },\n \"sha256Digest\": \"b5e406bb246012463c9d468f5ca7d9f16758a47d042dea9070ef397354f87beb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-3.0.0b11-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-3.0.0b11-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"3.0.0b11\"\n + \ },\n \"sha256Digest\": \"143ce75380ca2defa2f1bf241802747e3509509a50580e328c3b07fb1cb1fc77\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-3.0.0b12-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-3.0.0b12-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"3.0.0b12\"\n + \ },\n \"sha256Digest\": \"22b2aab02d7dc90b57bf51008e087c84c4f22372e425c750e52116462cca200c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-3.0.0b13-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-3.0.0b13-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"3.0.0b13\"\n + \ },\n \"sha256Digest\": \"a3e8c70bd56e2b31fc174ec7c24cf36995eb5597fcdae2722c3281aab7fde044\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-4.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-4.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"4.0.0b1\"\n },\n + \ \"sha256Digest\": \"27fdb9f6bf411cebc30281bdc578d12658db7c65055e5e598b88b58d3abb3ac7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-4.0.0b2-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-4.0.0b2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"4.0.0b2\"\n },\n + \ \"sha256Digest\": \"377d01c2e2099d60ec05a25b0458c41e97dfaa81adf3ada19207e78f572aaac4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-4.0.0b3-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-4.0.0b3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"4.0.0b3\"\n },\n + \ \"sha256Digest\": \"ee79134d705d6ebe661653bab44870f1bd307e0a194dbe911b43975c2f4b8458\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-4.0.0b4-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-4.0.0b4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developvalidate_nodepool_taintsers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"4.0.0b4\"\n },\n + \ \"sha256Digest\": \"2f6a8ec56fd48237ebf9d48cc5a63507d7360492d72deeb42f62c8acd8527b6b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-4.0.0b5-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-4.0.0b5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"4.0.0b5\"\n },\n + \ \"sha256Digest\": \"fff8b68a7a332789345947796cb5014ca2dd8781c38d49c7bdceaf9912490d10\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-5.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-5.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"5.0.0b1\"\n },\n + \ \"sha256Digest\": \"2c0a6b1a952b30f10f36f744e214a03774016fe7834038b917b8bc0ef03ce0c9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-5.0.0b2-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-5.0.0b2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"5.0.0b2\"\n },\n + \ \"sha256Digest\": \"e110ba66f4375b28e7bca9e7a91e31288454907165274a84a62625a2a047c338\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-5.0.0b3-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-5.0.0b3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"5.0.0b3\"\n },\n + \ \"sha256Digest\": \"ff3f4cb237c87040662306e3b46bfaabde9ea4e7d3c23be55f3a829baf8404d0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-6.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-6.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"6.0.0b1\"\n },\n + \ \"sha256Digest\": \"2e04cfef1cb404760006d73786c57259f8e5c92bc42b9eaca7314301ce0ba1a4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-7.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-7.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"7.0.0b1\"\n },\n + \ \"sha256Digest\": \"202443c5f559b7b57362479118a836d54d7eb2194d56e5eb31a15bea3bf35811\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-7.0.0b2-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-7.0.0b2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"7.0.0b2\"\n },\n + \ \"sha256Digest\": \"f2f8aba2abf4252b3e77c2d4245320c025e111d5374bb6c1a57631cd72c42e39\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-7.0.0b3-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-7.0.0b3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"7.0.0b3\"\n },\n + \ \"sha256Digest\": \"04067e9050de7b3560030613232bf51d9ada4b91885285954afe77b3e40ad90a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-7.0.0b4-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-7.0.0b4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"7.0.0b4\"\n },\n + \ \"sha256Digest\": \"1a8b9f22e0c36242a575434e5b25ed43e82fd9db5ad7f8b3d187b75ec4e4f879\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-7.0.0b5-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-7.0.0b5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"7.0.0b5\"\n },\n + \ \"sha256Digest\": \"9e46b526cf60b24af2a14ddba903f4695b1e3bf0eda9f0445438e8ae91079b52\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-7.0.0b6-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-7.0.0b6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"7.0.0b6\"\n },\n + \ \"sha256Digest\": \"268457ea6463d03775caa822b4b7a70749c503b47cb2aa9c898e1186cfb423f6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-7.0.0b7-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-7.0.0b7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"7.0.0b7\"\n },\n + \ \"sha256Digest\": \"4b554bfbdf16f0ffc5619ca627e686efd7bee0607da4c2ede39fd76cd1f1f9f8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-7.0.0b8-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-7.0.0b8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"7.0.0b8\"\n },\n + \ \"sha256Digest\": \"d0adea44ecf78c5b49d7e921fb8cb35fd5aa5f83ae7772f9b1d32b34c618eccd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-8.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-8.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"8.0.0b1\"\n },\n + \ \"sha256Digest\": \"500a670e0f4cd8ef9399a0928fbcef6440a68cdc2978c62db911d1585f351b75\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-9.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-9.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"9.0.0b1\"\n },\n + \ \"sha256Digest\": \"10c39ae052f5d76c4cf7584a404f6acac732af40dd58726365fdaeceb4eb2390\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-9.0.0b2-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-9.0.0b2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"9.0.0b2\"\n },\n + \ \"sha256Digest\": \"ad108c241c92d4228b8da42222b614eae665adea268e8a868b9d8a38ccddeab5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-9.0.0b3-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-9.0.0b3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"9.0.0b3\"\n },\n + \ \"sha256Digest\": \"810d53ed0e6743acb4d886bdb852a000e430f61cbbc0374523f07d638fdc77f1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-9.0.0b4-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-9.0.0b4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"9.0.0b4\"\n },\n + \ \"sha256Digest\": \"5d5ce9940eee897e0af79bdc5631debee33fe80a43385aa81b45257e15eb565f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-9.0.0b5-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-9.0.0b5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"9.0.0b5\"\n },\n + \ \"sha256Digest\": \"891fc0b5b47120e4f229bb0e75aae8b18ec833a5f8661c29da11f18c4e562ba6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-9.0.0b6-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-9.0.0b6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"9.0.0b6\"\n },\n + \ \"sha256Digest\": \"36a215d3a2fdb54b8a977ecab330c3f73c32746368c977364e11fd5cb8e089a4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-9.0.0b7-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-9.0.0b7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"9.0.0b7\"\n },\n + \ \"sha256Digest\": \"2939aadd8022141b95d83dae59f43f55b6385236c8bf6bb0ae94c7b5f3eb6591\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-9.0.0b8-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-9.0.0b8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"9.0.0b8\"\n },\n + \ \"sha256Digest\": \"09844ae02ba0d58f9368ae3738f3d4311f5ca721edcc1cf70886fcf8a80cbfb8\"\n + \ }\n ],\n \"aksarc\": [\n {\n \"downloadUrl\": + \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/aksarc-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"aksarc-1.0.0b1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://dev.azure.com/msazure/msk8s/_git/hybridaks-utils/azcli/aksarc\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"aksarc\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (>=24.0.0)\",\n \"kubernetes>=24.0.0\",\n + \ \"paramiko (<4.0.0,>=2.0.8)\",\n \"paramiko<4.0.0,>=2.0.8\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools HybridContainerService + Extension\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"292e44e40560c00c13e9ac9e113e2526943aac58fde3cc13d8ec5e14a463f05c\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/aksarc-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"aksarc-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://dev.azure.com/msazure/msk8s/_git/hybridaks-utils/azcli/aksarc\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"aksarc\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (>=24.0.0)\",\n \"kubernetes>=24.0.0\",\n + \ \"paramiko (>=3.3.1)\",\n \"paramiko>=3.3.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools HybridContainerService + Extension\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"e214f2e51d336069bbfd97f7d2ee31f467669e60f1920cee5f73ae2098f12a08\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/aksarc-1.0.2-py3-none-any.whl\",\n + \ \"filename\": \"aksarc-1.0.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://dev.azure.com/msazure/msk8s/_git/hybridaks-utils/azcli/aksarc\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"aksarc\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (>=24.0.0)\",\n \"kubernetes>=24.0.0\",\n + \ \"paramiko (>=3.3.1)\",\n \"paramiko>=3.3.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools HybridContainerService + Extension\",\n \"version\": \"1.0.2\"\n },\n + \ \"sha256Digest\": \"62c4ff20ce9d669ee4063a5bd4f03a7f7b591d2cf9fe74a3719b6be5586a937c\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/aksarc-1.0.3-py3-none-any.whl\",\n + \ \"filename\": \"aksarc-1.0.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://dev.azure.com/msazure/msk8s/_git/hybridaks-utils/azcli/aksarc\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"aksarc\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (>=24.0.0)\",\n \"kubernetes>=24.0.0\",\n + \ \"paramiko (>=3.3.1)\",\n \"paramiko>=3.3.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools HybridContainerService + Extension\",\n \"version\": \"1.0.3\"\n },\n + \ \"sha256Digest\": \"192197cf011658d2ed9ff2c98dcc469a4d8119d7988e902437071e9b83d113bf\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/aksarc-1.0.4-py3-none-any.whl\",\n + \ \"filename\": \"aksarc-1.0.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://dev.azure.com/msazure/msk8s/_git/hybridaks-utils/azcli/aksarc\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"aksarc\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (>=24.0.0)\",\n \"kubernetes>=24.0.0\",\n + \ \"paramiko (<4.0.0,>=2.0.8)\",\n \"paramiko<4.0.0,>=2.0.8\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools HybridContainerService + Extension\",\n \"version\": \"1.0.4\"\n },\n + \ \"sha256Digest\": \"3059bea235a1108cb9d22e9bd2f04d00293647abd53cacce454d3a23b4206887\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/aksarc-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"aksarc-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://dev.azure.com/msazure/msk8s/_git/hybridaks-utils/azcli/aksarc\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"aksarc\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (>=24.0.0)\",\n \"kubernetes>=24.0.0\",\n + \ \"paramiko (<4.0.0,>=2.0.8)\",\n \"paramiko<4.0.0,>=2.0.8\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools HybridContainerService + Extension\",\n \"version\": \"1.1.0\"\n },\n + \ \"sha256Digest\": \"c81f724aa3e55a864b8952c77f8d7413c1df79ce29331d550be8a310c74a9181\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/aksarc-1.1.1-py3-none-any.whl\",\n + \ \"filename\": \"aksarc-1.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://dev.azure.com/msazure/msk8s/_git/hybridaks-utils/azcli/aksarc\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"aksarc\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (>=24.0.0)\",\n \"kubernetes>=24.0.0\",\n + \ \"paramiko (<4.0.0,>=2.0.8)\",\n \"paramiko<4.0.0,>=2.0.8\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools HybridContainerService + Extension\",\n \"version\": \"1.1.1\"\n },\n + \ \"sha256Digest\": \"44151263f259c0b737319a355daef40fac9656342dfc1ea9a33a8c869f676fc5\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/aksarc-1.1.2-py3-none-any.whl\",\n + \ \"filename\": \"aksarc-1.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://dev.azure.com/msazure/msk8s/_git/hybridaks-utils/azcli/aksarc\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"aksarc\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (>=24.0.0)\",\n \"kubernetes>=24.0.0\",\n + \ \"paramiko (<4.0.0,>=2.0.8)\",\n \"paramiko<4.0.0,>=2.0.8\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools HybridContainerService + Extension\",\n \"version\": \"1.1.2\"\n },\n + \ \"sha256Digest\": \"3bdff388c2adc6df95b225d52b7af9197fa24ebfc02654451f127a6dbbc913ba\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/aksarc-1.2.20-py3-none-any.whl\",\n + \ \"filename\": \"aksarc-1.2.20-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://learn.microsoft.com/en-us/azure/aks/hybrid/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"aksarc\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (>=24.0.0)\",\n \"kubernetes>=24.0.0\",\n + \ \"paramiko (<4.0.0,>=2.0.8)\",\n \"paramiko<4.0.0,>=2.0.8\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools HybridContainerService + Extension\",\n \"version\": \"1.2.20\"\n },\n + \ \"sha256Digest\": \"bf55c6a31c8c9eb876e5f65260b134dd1820ed76bd9f838ebb9c3e30635faa04\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/aksarc-1.2.23-py3-none-any.whl\",\n + \ \"filename\": \"aksarc-1.2.23-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://learn.microsoft.com/en-us/azure/aks/hybrid/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"aksarc\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (>=24.0.0)\",\n \"kubernetes>=24.0.0\",\n + \ \"paramiko (<4.0.0,>=2.0.8)\",\n \"paramiko<4.0.0,>=2.0.8\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools HybridContainerService + Extension\",\n \"version\": \"1.2.23\"\n },\n + \ \"sha256Digest\": \"9a02fe5a42e135787b91feb950db74a318b6922d768b5c00327621951b9d6fdd\"\n + \ }\n ],\n \"akshybrid\": [\n {\n \"downloadUrl\": + \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/akshybrid-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"akshybrid-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.32.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://dev.azure.com/msazure/msk8s/_git/hybridaks-utils/azcli/akshybrid\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"akshybrid\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"kubernetes==11.0.0\",\n + \ \"pycryptodome (==3.12.0)\",\n \"pycryptodome==3.12.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools HybridContainerService + Extension\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"2ec4c1150f24ff806dccb4ecefe2f96c736276a9aef725c6988abfcc0adb3546\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/akshybrid-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"akshybrid-0.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.32.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://dev.azure.com/msazure/msk8s/_git/hybridaks-utils/azcli/akshybrid\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"akshybrid\",\n \"summary\": \"Microsoft Azure Command-Line + Tools HybridContainerService Extension\",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"9767cda444c421573bc220e01cd58a67c30a36175cedba68b0454a3c6e983a8e\"\n + \ }\n ],\n \"alb\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/alb-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"alb-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/alb\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"alb\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ALB Extension.\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"d88930eedb6164a3ac71ff42ab5f8e3b21edb5f95d01274f35fc7f91bbf70378\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alb-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"alb-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/alb\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"alb\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ALB Extension.\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"b020cd8cd3da6299dc978499dae452768b7651c3ed8e05f2f0b321bd9b8354d4\"\n + \ }\n ],\n \"alertsmanagement\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"alertsmanagement-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"fey@microsoft.com\",\n \"name\": \"Github:qwordy\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"alertsmanagement\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Alerts Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"80ab78574debff9d8a9106bac3929cb552adea1371ea24f06073669fef708fcd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"alertsmanagement-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"fey@microsoft.com\",\n \"name\": \"Github:qwordy\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/alertsmanagement\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"alertsmanagement\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Alerts Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"319f2855f71de21b22b721b4b02d50faf858a71c04ced52a4f4c1e4e114dffa6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"alertsmanagement-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/alertsmanagement\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"alertsmanagement\",\n \"summary\": \"Microsoft Azure + Command-Line Tools AlertsManagementClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"1881c770fca969d269840923f1a6332602ec0a031c7402aaefa3ac6babadf70c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"alertsmanagement-0.2.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/alertsmanagement\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"alertsmanagement\",\n \"summary\": \"Microsoft Azure + Command-Line Tools AlertsManagementClient Extension\",\n \"version\": + \"0.2.1\"\n },\n \"sha256Digest\": \"4ad81bafbcf4d0cc813918d3a370eda0ff4d7e8d410cadb1adee353e300d58ef\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.2.2-py3-none-any.whl\",\n + \ \"filename\": \"alertsmanagement-0.2.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/alertsmanagement\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"alertsmanagement\",\n \"summary\": \"Microsoft Azure + Command-Line Tools AlertsManagementClient Extension\",\n \"version\": + \"0.2.2\"\n },\n \"sha256Digest\": \"2221f34f874532e4c5324f821a40a49f6cecca70b72e594144e6baf60b08508e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.2.3-py3-none-any.whl\",\n + \ \"filename\": \"alertsmanagement-0.2.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/alertsmanagement\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"alertsmanagement\",\n \"summary\": \"Microsoft Azure + Command-Line Tools AlertsManagementClient Extension\",\n \"version\": + \"0.2.3\"\n },\n \"sha256Digest\": \"b45a5752924ab1205ff5862f03a4a465eccb4dd8e79900023498d674aa68665b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alertsmanagement-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"alertsmanagement-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/alertsmanagement\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"alertsmanagement\",\n \"summary\": \"Microsoft Azure + Command-Line Tools AlertsManagementClient Extension\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"e1e15aeff1ab9b25fb820b914e602ce84a7d00e5382eb07d413f1492d90b09d1\"\n + \ }\n ],\n \"alias\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/alias-0.5.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"alias-0.5.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.50.dev0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"t-chwong@microsoft.com\",\n \"name\": + \"Ernest Wong\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.29.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"alias\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"jinja2 (~=2.10)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for command aliases\",\n \"version\": \"0.5.2\"\n + \ },\n \"sha256Digest\": \"05f82d75026e780d27bd34a1be57f4ec0f425500d8ab4ee7e92fee07b944da33\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/alias-0.5.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"alias-0.5.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.31.dev0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"t-chwong@microsoft.com\",\n \"name\": + \"Ernest Wong\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"alias\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"jinja2 (~=2.10)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for command aliases\",\n \"version\": \"0.5.1\"\n + \ },\n \"sha256Digest\": \"81b9a7f1824bffcbd6e72680891476151dde868e030cdbf1bfd9135e1a8f3447\"\n + \ }\n ],\n \"amg\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.30.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"2770ea61e30390300de97c4a76424febfc46a24a62f250b0fd3625017cf133f3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"amg-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.30.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"267cb352947fc4d0991d6d36b5a5ab86604c95a66acfb030212653ae4ada0fc6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"amg-0.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.30.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"f6e7b4cbe3fed90f9683ef96280612e2646286ca8028f4061013a0c6255c7208\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-0.1.3-py3-none-any.whl\",\n + \ \"filename\": \"amg-0.1.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.30.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"0.1.3\"\n },\n \"sha256Digest\": \"81e5bffefbb991136eaa19ab5175ff33ca8edec31b38c615ef2ffcaee80f5725\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"05b53c3e894a7f776251d2e5854c16e30cb6f5755d1e67e52fbcc5815f428d61\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"c3db4f061746fe2dc656a00084069d2905eb2f95e35f8beafe2900add16d8089\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-0.3.1-py3-none-any.whl\",\n + \ \"filename\": \"amg-0.3.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"0.3.1\"\n },\n \"sha256Digest\": \"64f1ebcebdd06cc0277a3cfe26b29b150135ce5b092296b8975ec56732a60729\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"dbb9572514ce2151900b38b9c30af7459f8ae35f8b052d0e7800894b50cc482e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.1.0\"\n },\n \"sha256Digest\": \"9d6e10ce78bcdeca062ab790a80d62ca1ccaabdb27fca8db891cbf3cec2835a0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.2.0\"\n },\n \"sha256Digest\": \"167bb7b5f668900d7d053d7b41a54ff89c5e5b89f723f4bb9c19d1e069a8d6e1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.2.1-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.2.1\"\n },\n \"sha256Digest\": \"0e182a9545c7b5ffc9d1ca04a08a508b7edd1428b5f9f90b408f912dce3205c0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.2.2-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.2.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.2.2\"\n },\n \"sha256Digest\": \"65903b31502c1405bbc0c0cedce6939e039825522ee2a0f85f3e4d8cb154531c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.2.3-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.2.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.2.3\"\n },\n \"sha256Digest\": \"ecc4dc8bf92c722de40390ba8cbf90c45ea80d0bbb44596c80efb157f2d330b2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.2.4-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.2.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.2.4\"\n },\n \"sha256Digest\": \"bc09a29642566d51b5a479ff3d9a62328ef84ad624c81c6e9eac9970c1fa3f02\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.2.5-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.2.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.2.5\"\n },\n \"sha256Digest\": \"82c34f845b70bfcaa717a0f9c12b08f461a6513bfb6c8d1331353297f769036a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.2.6-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.2.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.2.6\"\n },\n \"sha256Digest\": \"79540160025c90fe10595dc54560fb8a4025bb52cc78ca317351676e8a7b5aab\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.2.7-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.2.7-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.2.7\"\n },\n \"sha256Digest\": \"1f2fc11c645cb9df353b783e0ca8f037fafd863615963364c842d62c2d2d9cb5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.2.8-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.2.8-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.2.8\"\n },\n \"sha256Digest\": \"c51dc555e3c8b142bff445fe9f6d7b7c8614591093cd0d7f4dc02c12dede1fba\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.2.9-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.2.9-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.2.9\"\n },\n \"sha256Digest\": \"dbea8dd0e85dd2f30f30cb66f0dd7f9d0314a7ff9765a4d074622b75aeccad2f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.2.10-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.2.10-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.2.10\"\n },\n \"sha256Digest\": \"a19d60a2e1d3562cf9434bb7817b85f8ccca1472c6622921b83db9e1a85a98b7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"amg\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-dashboard (>=1.1.0)\",\n \"azure-mgmt-dashboard>=1.1.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Azure + Managed Grafana Extension\",\n \"version\": \"1.3.0\"\n + \ },\n \"sha256Digest\": \"c644207517d21641677fe5a1644271d5f751f1493e0dc8e1cded6645ac096a91\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.1-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.3.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"amg\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-dashboard (>=1.1.0)\",\n \"azure-mgmt-dashboard>=1.1.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Azure + Managed Grafana Extension\",\n \"version\": \"1.3.1\"\n + \ },\n \"sha256Digest\": \"7c7f452e18b92934d4f4ccc23ef2984ac0078397ca85b60bb287bf4f89c925f5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.2-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.3.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.3.2\"\n },\n \"sha256Digest\": \"cf31e9336e8b8bf63b7a1362ea05871f65493cfd49fd4a2cb73c1cb63c81f91a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.3-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.3.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.3.3\"\n },\n \"sha256Digest\": \"73914977612839d541cb356f3fccd0381d1126b20fdb6cab29a99fd81da974c0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.4-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.3.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.3.4\"\n },\n \"sha256Digest\": \"cf665da8629edfef5189eb2dd57d849d458f841cff83d2cad2a1b61104febf22\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.5-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.3.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.3.5\"\n },\n \"sha256Digest\": \"5eb4615d05dd85021d7d00311fdc25645535fe69e07cea1eca68d58cfb7bd44e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.6-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.3.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.3.6\"\n },\n \"sha256Digest\": \"52fbff96d56e381e636f6b2e9f8be80ac7eef766153ba8225a183b73d2972f25\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-2.0.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-2.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.61.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"2.0.0\"\n },\n \"sha256Digest\": \"f6d05f59e995cdfb99d3f465b827c8989f76564cb6e0933cc8ffc7f82a46d427\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-2.1.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-2.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.61.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"2.1.0\"\n },\n \"sha256Digest\": \"b28952d967b9a1e0d81dac280bdff23b44fdbb06dedd66cdf99477bdd7541d6c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-2.2.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-2.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.61.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"2.2.0\"\n },\n \"sha256Digest\": \"8d832463a35329e61840bce5fe2c3ba214f8e800cc38140fe58dc2bf13ffeb90\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-2.3.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-2.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.61.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"2.3.0\"\n },\n \"sha256Digest\": \"8384502d50e6984ff286c0222686079a3fabfbdc6588e862d2af2d8967cebec7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-2.3.1-py3-none-any.whl\",\n + \ \"filename\": \"amg-2.3.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.61.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"2.3.1\"\n },\n \"sha256Digest\": \"a85cb7aeb31878ea3be76df39f140d10c459cbf8d78971198decd58d8bdb355c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-2.4.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-2.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.61.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"2.4.0\"\n },\n \"sha256Digest\": \"624ca8c847ce93ecc839ee428115d09b263c4ece7c52da0abef38893645111d6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-2.5.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-2.5.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.61.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"2.5.0\"\n },\n \"sha256Digest\": \"c9002d8c653f56a8b1086bf33e918f3ba6f327cc84006be7594078421887f41d\"\n + \ }\n ],\n \"amlfs\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/amlfs-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"amlfs-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/amlfs\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amlfs\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Amlfs Extension.\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"21b5a12943e727315288aa0ca1c49a25803a656b7f388c3c637596cfdf67bd1d\"\n + \ }\n ],\n \"aosm\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/aosm-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"aosm-1.0.0b1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aosm\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"aosm\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-storage-blob (>=12.15.0)\",\n \"azure-storage-blob>=12.15.0\",\n + \ \"jinja2 (>=3.1.2)\",\n \"jinja2>=3.1.2\",\n + \ \"oras (~=0.1.19)\",\n \"oras~=0.1.19\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Aosm + Extension\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"410758efacaaecd1d3567c47a1385fab3c0dfaa9438abb6e7a75ad52bc8b3f6f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aosm-1.0.0b2-py2.py3-none-any.whl\",\n + \ \"filename\": \"aosm-1.0.0b2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aosm\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"aosm\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-storage-blob (>=12.15.0)\",\n \"azure-storage-blob>=12.15.0\",\n + \ \"jinja2 (>=3.1.2)\",\n \"jinja2>=3.1.2\",\n + \ \"oras (~=0.1.19)\",\n \"oras~=0.1.19\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Aosm + Extension\",\n \"version\": \"1.0.0b2\"\n },\n + \ \"sha256Digest\": \"c6f7296d1b3a49e41a77d09efe18477c582e7a2b6724e6443a45f84214b47c37\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aosm-1.0.0b3-py2.py3-none-any.whl\",\n + \ \"filename\": \"aosm-1.0.0b3-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aosm\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"aosm\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"jinja2 (>=3.1.2)\",\n \"jinja2>=3.1.2\",\n + \ \"oras (~=0.1.19)\",\n \"oras~=0.1.19\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Aosm + Extension\",\n \"version\": \"1.0.0b3\"\n },\n + \ \"sha256Digest\": \"ae22e195764dac210d058b111a1bf96fe322f7dc09b2d00a19d85ce28ef9cd12\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aosm-2.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"aosm-2.0.0b1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.54.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/aosm\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"aosm\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"genson (>=1.2.2)\",\n \"genson>=1.2.2\",\n + \ \"jinja2 (>=3.1.4)\",\n \"jinja2>=3.1.4\",\n + \ \"oras (~=0.1.19)\",\n \"oras~=0.1.19\",\n + \ \"ruamel.yaml (>=0.17.4)\",\n \"ruamel.yaml>=0.17.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Aosm + Extension\",\n \"version\": \"2.0.0b1\"\n },\n + \ \"sha256Digest\": \"5c08be674f1aacdaeaef2ddc3561b3b2d09658c446afd33ba9d25ca3785181dc\"\n + \ }\n ],\n \"apic-extension\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/apic_extension-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"apic_extension-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/apic-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"apic-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ApicExtension Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"03e8e9ec1ae46e6f4963ddf2fd3d8e7d642dd8b6403c0b19385aa4c4a3d06e7a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/apic_extension-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"apic_extension-1.0.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/apic-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"apic-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ApicExtension Extension.\",\n \"version\": \"1.0.0b2\"\n + \ },\n \"sha256Digest\": \"2147104b9118759826c2bf3e6289869c91c1baf5b10006f17731dea3716782ed\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/apic_extension-1.0.0b3-py3-none-any.whl\",\n + \ \"filename\": \"apic_extension-1.0.0b3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/apic-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"apic-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ApicExtension Extension.\",\n \"version\": \"1.0.0b3\"\n + \ },\n \"sha256Digest\": \"a102a46dafd78613c7225251bd8535003fbcd33a2dba93f98862821ee0b04298\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/apic_extension-1.0.0b4-py3-none-any.whl\",\n + \ \"filename\": \"apic_extension-1.0.0b4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/apic-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"apic-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ApicExtension Extension.\",\n \"version\": \"1.0.0b4\"\n + \ },\n \"sha256Digest\": \"67294fd30190b66b339c8d550e58e1401117b313bea638fb0c126dec26249408\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/apic_extension-1.0.0b5-py3-none-any.whl\",\n + \ \"filename\": \"apic_extension-1.0.0b5-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/apic-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"apic-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ApicExtension Extension.\",\n \"version\": \"1.0.0b5\"\n + \ },\n \"sha256Digest\": \"fbca1f8446013142d676159b8292fd7c2d3175f39e1baeb5c4d13f9637003254\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/apic_extension-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"apic_extension-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/apic-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"apic-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ApicExtension Extension.\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"4bcaebfa5e9b112673f49fdee28c0690823e52a86e0ad4e5329634f4d195d425\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/apic_extension-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"apic_extension-1.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/apic-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"apic-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ApicExtension Extension.\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"01e5eb422e84268396ddb0251230bdd3b9d475f463e8133f0415fb0f0e03240b\"\n + \ }\n ],\n \"application-insights\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"aleldeib@microsoft.com\",\n \"name\": + \"Ace Eldeib\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"application-insights\",\n \"summary\": \"Support for + managing Application Insights components and querying metrics, events, and + logs from such components.\",\n \"version\": \"0.1.3\"\n + \ },\n \"sha256Digest\": \"e5b8104da5d9f241a0599adeb3b1d2f910f00991f47d4f4c4095285de3a82f00\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"aleldeib@microsoft.com\",\n \"name\": + \"Ace Eldeib\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"application-insights\",\n \"summary\": \"Support for + managing Application Insights components and querying metrics, events, and + logs from such components.\",\n \"version\": \"0.1.4\"\n + \ },\n \"sha256Digest\": \"8b4ef4870b16a15fd81af385c3dff762e7af52333e212a68b5ec5f42663a6078\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"application-insights\",\n \"summary\": \"Support for + managing Application Insights components and querying metrics, events, and + logs from such components.\",\n \"version\": \"0.1.5\"\n + \ },\n \"sha256Digest\": \"effa0a37f1e8b2506d4849a2208d69f06a6683809e5da809bea63bd0f940da2f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"application-insights\",\n \"summary\": \"Support for + managing Application Insights components and querying metrics, events, and + logs from such components.\",\n \"version\": \"0.1.6\"\n + \ },\n \"sha256Digest\": \"271db7f2036eb245d3d00d5010468330e4ed97e7ed9756598e61a1960d37ac44\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"application-insights\",\n \"summary\": \"Support for + managing Application Insights components and querying metrics, events, and + logs from such components.\",\n \"version\": \"0.1.7\"\n + \ },\n \"sha256Digest\": \"6cb8c879d0960e6f41e1273c309253d7d7ca42089694fcf5e500d0a27ae89b59\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.8\"\n },\n \"sha256Digest\": \"f2f041e166f0b587e7c92252ef59e3bcecb8721f15c5e96f4496871a85a81f61\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.9\"\n },\n \"sha256Digest\": \"4ed371e2e02a31133bec6d416dd98c0de3e1ffbf56089e034abc36609c9dfa97\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.10-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.10\"\n },\n \"sha256Digest\": \"4f6ef254677ae32523f44af0f6b99bbdf6e5a8d1c894c7d2d72f4c8f8f359fb0\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.11-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.11-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.11\"\n },\n \"sha256Digest\": \"ffb9b4daf395966226786cc55bce2beff7d9a22ccec739cb21910ff03f582e90\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.12-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.12-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.12\"\n },\n \"sha256Digest\": \"94ecdd71a1007df791a193e9273e902c39caa53dc965823c019d41cd679ee27c\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.13-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.13-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.13\"\n },\n \"sha256Digest\": \"b1d5d31cfbd8a75595943d7248e585d63d0a1c6b43c69febbd7162239af98933\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.14-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.14-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/application-insights\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.14\"\n },\n \"sha256Digest\": \"9e20c68a41b089691881813fa67596ee96141dda0575f57651417a5dc361d807\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.15-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.15-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/application-insights\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.15\"\n },\n \"sha256Digest\": \"2173bccb328f61ebdb2ce1a3018856a4a6d2d179fe8d6b665e996203b0ac13a5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.16-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.16-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/application-insights\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.16\"\n },\n \"sha256Digest\": \"6b13261d341818e8e491506265ff86b5a4517149e92a462de2ac05102afc923a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.17-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.17-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.79\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/application-insights\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.17\"\n },\n \"sha256Digest\": \"e43ed9edb7a60a3144f43859c69caa868af41ed31145cf8f7da677da29211682\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.18-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.18-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"aleldeib@microsoft.com\",\n \"name\": + \"Ace Eldeib\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/application-insights\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.18\"\n },\n \"sha256Digest\": \"fd77fff1b394b9924365823c3236ebd234c80c20eecebeef24a3629faf220407\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.19-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-0.1.19-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"aleldeib@microsoft.com\",\n \"name\": + \"Ace Eldeib\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/application-insights\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for managing Application Insights components and querying metrics, + events, and logs from such components.\",\n \"version\": + \"0.1.19\"\n },\n \"sha256Digest\": \"38d7a81da141502533e250dd99f5b91b152464f0af99e0b71f1478f2ff63e930\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.50.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/application-insights\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\",\n \"isodate~=0.6.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for managing Application Insights + components and querying metrics, events, and logs from such components.\",\n + \ \"version\": \"1.0.0\"\n },\n \"sha256Digest\": + \"f474e3ff345f026f9283077ef0a906c3c9e51746d6c3530d1e425f4e35d24227\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-1.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-1.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/application-insights\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\",\n \"isodate~=0.6.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for managing Application Insights + components and querying metrics, events, and logs from such components.\",\n + \ \"version\": \"1.2.0\"\n },\n \"sha256Digest\": + \"a58d0e878691601fc41f68881203d33c4bf28abd1f0c58c695080a35d6a988cb\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-1.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-1.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/application-insights\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\",\n \"isodate~=0.6.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for managing Application Insights + components and querying metrics, events, and logs from such components.\",\n + \ \"version\": \"1.2.1\"\n },\n \"sha256Digest\": + \"e1fa824eb587e2bec7f4cb4d1c4ce1033ab3d3fac65af42dd6218f673b019cee\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-1.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-1.2.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/application-insights\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\",\n \"isodate~=0.6.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for managing Application Insights + components and querying metrics, events, and logs from such components.\",\n + \ \"version\": \"1.2.2\"\n },\n \"sha256Digest\": + \"8a398f8fc8c6facfbce798e5cb79b9c04cf99b24bca7153f49c7fb9513f656f2\"\n }\n + \ ],\n \"appservice-kube\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"appservice_kube-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.26.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"appservice-kube\",\n \"summary\": \"Microsoft Azure Command-Line + Tools App Service on Kubernetes Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"20f01eb95b1daadf21f589d3d953a756cb61259f279973880b4c0acbd4e05e27\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"appservice_kube-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.26.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"appservice-kube\",\n \"summary\": \"Microsoft Azure Command-Line + Tools App Service on Kubernetes Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"4b1b59fbac8dc68f390c48e9e8fa32676c041b857d2bf5f425bc8815e69b8708\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"appservice_kube-0.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.26.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"appservice-kube\",\n \"summary\": \"Microsoft Azure Command-Line + Tools App Service on Kubernetes Extension\",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"aa67ced7e361002bf8bec125540c4f9eb216ba0ad7342336285b8bdd17f1ece0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"appservice_kube-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.33.1\",\n \"azext.minCliCoreVersion\": + \"2.33.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/appservice-kube\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"appservice-kube\",\n \"summary\": \"Microsoft Azure Command-Line + Tools App Service on Kubernetes Extension\",\n \"version\": + \"0.1.3\"\n },\n \"sha256Digest\": \"e972d2e31eacf83f8ceddc7a4db88e72af71238cdfe6cb6772742be163a9230f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"appservice_kube-0.1.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.34.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/appservice-kube\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"appservice-kube\",\n \"summary\": \"Microsoft Azure Command-Line + Tools App Service on Kubernetes Extension\",\n \"version\": + \"0.1.4\"\n },\n \"sha256Digest\": \"96156079aa1128cd5819d353aa27434b4c028f6b525275a136092c5c2b02af4f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"appservice_kube-0.1.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.34.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/appservice-kube\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"appservice-kube\",\n \"summary\": \"Microsoft Azure Command-Line + Tools App Service on Kubernetes Extension\",\n \"version\": + \"0.1.5\"\n },\n \"sha256Digest\": \"d380339170ffdfcdd1e26336da8a3586761b0268f959476f0ecdc50a6365160d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"appservice_kube-0.1.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.34.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/appservice-kube\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"appservice-kube\",\n \"summary\": \"Microsoft Azure Command-Line + Tools App Service on Kubernetes Extension\",\n \"version\": + \"0.1.6\"\n },\n \"sha256Digest\": \"8bf69f06efb9f47aad181f1917f9148c10ab3df6ae1de5b584482a8141727b05\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"appservice_kube-0.1.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.34.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/appservice-kube\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"appservice-kube\",\n \"summary\": \"Microsoft Azure Command-Line + Tools App Service on Kubernetes Extension\",\n \"version\": + \"0.1.7\"\n },\n \"sha256Digest\": \"0d0f1e3aa1540e204ffcfb5fb00ebf0ae7d6de693d73d5a94821679f81f75263\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"appservice_kube-0.1.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.34.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/appservice-kube\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"appservice-kube\",\n \"summary\": \"Microsoft Azure Command-Line + Tools App Service on Kubernetes Extension\",\n \"version\": + \"0.1.8\"\n },\n \"sha256Digest\": \"71340c2f45b58add8c9aa7b2d0c4ac338ae124cf6f35af61e5560e079d2c2ba5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"appservice_kube-0.1.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.34.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/appservice-kube\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"appservice-kube\",\n \"summary\": \"Microsoft Azure Command-Line + Tools App Service on Kubernetes Extension\",\n \"version\": + \"0.1.9\"\n },\n \"sha256Digest\": \"9107762296c67ef4035256a9790b075040f263804116a3f9a6866227ff6019ed\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"appservice_kube-0.1.10-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.34.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/appservice-kube\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"appservice-kube\",\n \"summary\": \"Microsoft Azure Command-Line + Tools App Service on Kubernetes Extension\",\n \"version\": + \"0.1.10\"\n },\n \"sha256Digest\": \"7fd72d27e4b0eceda3b2b4f301c7a0c3068fea8b96d70f9fcaad142240de7d0d\"\n + \ }\n ],\n \"arcappliance\": [\n {\n \"downloadUrl\": + \"https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcappliance-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"appliance@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"arcappliance\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"jsonschema (==4.17.3)\",\n \"kubernetes + (==26.1.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Arcappliance + Extension\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"f14025a79087bc6e56963e3a0fa226b6727f46d660dc1d684c02fd037080e833\"\n + \ },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcappliance-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"appliance@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"arcappliance\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"jsonschema (==4.17.3)\",\n \"kubernetes + (==28.1.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Arcappliance + Extension\",\n \"version\": \"1.0.1\"\n },\n + \ \"sha256Digest\": \"2d4ca1b6902890f12ae0179519ed9177a9b22b44f4386f064b912eed1af4b02b\"\n + \ },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-1.0.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcappliance-1.0.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"appliance@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"arcappliance\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"jsonschema (==4.17.3)\",\n \"kubernetes + (==28.1.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Arcappliance + Extension\",\n \"version\": \"1.0.2\"\n },\n + \ \"sha256Digest\": \"bc0b0e46b135ec874fa06debc3eb50ae9d27b3b296bcf0cdace815490827cfbf\"\n + \ },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-1.0.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcappliance-1.0.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"appliance@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"arcappliance\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"jsonschema (==4.17.3)\",\n \"kubernetes + (==28.1.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Arcappliance + Extension\",\n \"version\": \"1.0.3\"\n },\n + \ \"sha256Digest\": \"15c83d845ee7bc580ee163786c38ba29958a37b11abeb5e7fd1503d07e030c09\"\n + \ },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-1.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcappliance-1.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"appliance@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"arcappliance\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"jsonschema (==4.17.3)\",\n \"kubernetes + (==28.1.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Arcappliance + Extension\",\n \"version\": \"1.1.0\"\n },\n + \ \"sha256Digest\": \"fe7ac7344d9e6c4866d7d155a7167cd89e7c17618e18c4871222b04a31daa5cd\"\n + \ },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-1.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcappliance-1.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"appliance@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"arcappliance\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"jsonschema (==4.17.3)\",\n \"kubernetes + (==28.1.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Arcappliance + Extension\",\n \"version\": \"1.1.1\"\n },\n + \ \"sha256Digest\": \"fc32b32be734782c31c54449a1658fe87845bb4aaa515a8ebb1db4c25cfc8658\"\n + \ },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-1.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcappliance-1.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"appliance@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"arcappliance\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"jsonschema (==4.17.3)\",\n \"kubernetes + (==28.1.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Arcappliance + Extension\",\n \"version\": \"1.2.0\"\n },\n + \ \"sha256Digest\": \"5ec3f8a22f90cbf3d344a3960d5bc6f76b05ec90a33f48da22d98329fff9b076\"\n + \ },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-1.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcappliance-1.3.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"appliance@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"arcappliance\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"jsonschema (==4.17.3)\",\n \"kubernetes + (==28.1.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Arcappliance + Extension\",\n \"version\": \"1.3.0\"\n },\n + \ \"sha256Digest\": \"82030aee437c1bbe53257713e3ccda23c5ade36b45313d895e8caa20b78b038c\"\n + \ }\n ],\n \"arcdata\": [\n {\n \"downloadUrl\": + \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.19-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.19-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"colorama==0.4.4\",\n \"jinja2 + (==3.1.4)\",\n \"jinja2==3.1.4\",\n \"jsonpatch + (==1.24)\",\n \"jsonpatch==1.24\",\n \"jsonpath-ng + (==1.4.3)\",\n \"jsonpath_ng==1.4.3\",\n \"jsonschema + (==3.2.0)\",\n \"jsonschema==3.2.0\",\n \"kubernetes + (==23.3.0)\",\n \"kubernetes==23.3.0\",\n \"ndjson + (==0.3.1)\",\n \"ndjson==0.3.1\",\n \"pem + (==21.2.0)\",\n \"pem==21.2.0\",\n \"pydash + (==7.0.6)\",\n \"pydash==7.0.6\",\n \"regex + (==2023.10.3)\",\n \"regex==2023.10.3\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.5.19\"\n + \ },\n \"sha256Digest\": \"e5b9ae07e62dd9457ff7019e04c7f99b1a7ae59983b17d743ec178bda4f2ceb2\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.18-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.18-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.1.4)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==7.0.6)\",\n \"regex + (==2023.10.3)\"\n ]\n }\n + \ ],\n \"summary\": \"Tools for managing + ArcData.\",\n \"version\": \"1.5.18\"\n },\n + \ \"sha256Digest\": \"92ca0a9ad47c80c382e41a19e65a24ba7eaec8231dd7e6a3dbc4b7df368377b7\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.17-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.17-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.1.4)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==7.0.6)\",\n \"regex + (==2023.10.3)\"\n ]\n }\n + \ ],\n \"summary\": \"Tools for managing + ArcData.\",\n \"version\": \"1.5.17\"\n },\n + \ \"sha256Digest\": \"e70d2a2ced54ed03a08520161bf7736d6f5234cb454bfe6acae18afd99769ed8\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.16-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.16-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==7.0.6)\",\n \"regex + (==2023.10.3)\"\n ]\n }\n + \ ],\n \"summary\": \"Tools for managing + ArcData.\",\n \"version\": \"1.5.16\"\n },\n + \ \"sha256Digest\": \"2055f3e9c504892c3d06c70cce5037e071f7feb27857925d4a21e1d549c168bc\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.15-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.15-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==7.0.6)\",\n \"regex + (==2023.10.3)\"\n ]\n }\n + \ ],\n \"summary\": \"Tools for managing + ArcData.\",\n \"version\": \"1.5.15\"\n },\n + \ \"sha256Digest\": \"5ffc8b3a39abc34f0b0e209bcf6432e9834bf6144a0d842a7d5d2342bf378c4a\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.13-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.13-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==7.0.6)\",\n \"regex + (==2023.10.3)\"\n ]\n }\n + \ ],\n \"summary\": \"Tools for managing + ArcData.\",\n \"version\": \"1.5.13\"\n },\n + \ \"sha256Digest\": \"c0d14a8d12c37907165d4acb4074d5d01cb03c6b5b8ac6a3a8885c04a8f92953\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.12-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.12-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==7.0.6)\",\n \"regex + (==2023.10.3)\"\n ]\n }\n + \ ],\n \"summary\": \"Tools for managing + ArcData.\",\n \"version\": \"1.5.12\"\n },\n + \ \"sha256Digest\": \"b0b9eb43c720d22c35789dccd29358c5715d9c591d7e33d5c098e5cfe4561812\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.11-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.11-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==7.0.6)\",\n \"regex + (==2023.10.3)\"\n ]\n }\n + \ ],\n \"summary\": \"Tools for managing + ArcData.\",\n \"version\": \"1.5.11\"\n },\n + \ \"sha256Digest\": \"e256260e003ae5953969aa9c36ed71ba69d235abd1762f7184f157b6e45e731a\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.10-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==7.0.6)\",\n \"regex + (==2023.10.3)\"\n ]\n }\n + \ ],\n \"summary\": \"Tools for managing + ArcData.\",\n \"version\": \"1.5.10\"\n },\n + \ \"sha256Digest\": \"6bff67a0b183c42a2ecfe024dd1bfd1d28fca9d663bf5f9793f1be3289cb53e8\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.9-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==7.0.6)\",\n \"regex + (==2023.10.3)\"\n ]\n }\n + \ ],\n \"summary\": \"Tools for managing + ArcData.\",\n \"version\": \"1.5.9\"\n },\n + \ \"sha256Digest\": \"106171524953a84d1d5ab7b49629746ca3bbccdcfa3b94974fd112e3e629cafd\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.8-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\",\n \"regex + (==2023.10.3)\"\n ]\n }\n + \ ],\n \"summary\": \"Tools for managing + ArcData.\",\n \"version\": \"1.5.8\"\n },\n + \ \"sha256Digest\": \"3b3a1271ea8eb928d259adc66bef43c0736a821817848454e21e7fcd123c52aa\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.7-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\",\n \"regex + (==2023.10.3)\"\n ]\n }\n + \ ],\n \"summary\": \"Tools for managing + ArcData.\",\n \"version\": \"1.5.7\"\n },\n + \ \"sha256Digest\": \"40be29d359effa667d64fb82415e8315293465078d61100e7e33f8a86f10f693\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.6-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.5.6\"\n + \ },\n \"sha256Digest\": \"799d951006b39e868d7f821dca2407c24c712cd35c9d61923718cc3529c9970d\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.5-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.5.5\"\n + \ },\n \"sha256Digest\": \"e8a1df495eddd4f38d8b61039be81f97545ba26d276357c2f459425b52ca7b4a\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.4-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.5.4\"\n + \ },\n \"sha256Digest\": \"073bfd9b88ea3da38c2fff90e36c1a6d1e02a3a4242d2da139ff0d8de8094f55\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.3-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.5.3\"\n + \ },\n \"sha256Digest\": \"4c420b270d32c1b2c70ec1e6496fdad07bfd311be159638f44a97d159449183c\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.5.2\"\n + \ },\n \"sha256Digest\": \"d5b4fabc9f1285c4060c45195de8aae8e7b68f54369f998bc7036cde0fd622a5\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.5.1\"\n + \ },\n \"sha256Digest\": \"1d5d6d3ff7c18a7ce6ccdc5ac3dd4fc38b7b028fa9cf2e03ab58a05e6b733081\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.5.0\"\n + \ },\n \"sha256Digest\": \"9b1fd4f95a69ce545586d4bebdd7a1e561d966f1a2569a99c50f18ce9d91c0e2\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.13-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.4.13-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.4.13\"\n + \ },\n \"sha256Digest\": \"4241f12e3e45007cc55ded3361527ee8f67c683486039185c8a6075b75a8d35c\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.12-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.4.12-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.4.12\"\n + \ },\n \"sha256Digest\": \"f25bba4a4893c86eb1bb97ce7756ccff52414979f06b796ec881017a95811e04\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.11-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.4.11-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.4.11\"\n + \ },\n \"sha256Digest\": \"658b8e1a70644c140d05552f81ba22e04cdf523e48bb0123b83d16ba77369e2f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.4.10-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.4.10\"\n + \ },\n \"sha256Digest\": \"5a66ae32b6fe2bf76ec9174f7c22ac1fac2325dea06f8e8ba46496d4ac24aa09\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.4.9-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.4.9\"\n + \ },\n \"sha256Digest\": \"e41a664bc431ced3fa5b4988c0155d124b93bbe74a828f0c26e28a4e5dc64c86\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.4.8-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.4.8\"\n + \ },\n \"sha256Digest\": \"de3b3b1675508c65cd65adfc3626a732f1c54df4abddb4d37de1df034076c22a\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.4.7-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.4.7\"\n + \ },\n \"sha256Digest\": \"cc93f2e345df2612dae91f5794ffbd5308a5c3649a9fb0d5d15dd07577b9ce8a\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.4.6-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.4.6\"\n + \ },\n \"sha256Digest\": \"d4111d3dc70de9c13e55becb3844f5fe1cf70e496c925a6b6e2d6c7db1666594\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.4.5-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.4.5\"\n + \ },\n \"sha256Digest\": \"707adc5e23d30706b53ae2a660f74fbd58ac087b21530d86d9f32be41f0e5adb\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.4.4-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.4.4\"\n + \ },\n \"sha256Digest\": \"43a1bf1f68b90484f6eae647e25e87ef6b03cb722f43c1917ef6bf8e5d919e8f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.4.3-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.4.3\"\n + \ },\n \"sha256Digest\": \"2248da81432c9e2be1ce5a70c7288a6feb1f785256c19cb51bec934252401ee6\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.4.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.4.2\"\n + \ },\n \"sha256Digest\": \"f5c0a29bda9f7e914347dc00481c89d21dea17abf98d1038ec0c7fa337049d97\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.4.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.4.1\"\n + \ },\n \"sha256Digest\": \"702c8b02f0a2e2d3ad9110ec464ce04619a972d52875b76f839d1b3e0ce3817e\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.4.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.4.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.4.0\"\n + \ },\n \"sha256Digest\": \"26e67d2d3920902c12330a53f831d7916a1461926c0efd3b7929416bd04c78b0\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.3.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.3.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.3.1\"\n + \ },\n \"sha256Digest\": \"c7040d903665c23b592462225ad32bdff90af40a99fa73ba440b87857c3e1e5b\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.3.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.3.0\"\n + \ },\n \"sha256Digest\": \"abb61b170c3b830212f12bcb199e5d5106e7cb6ff880b7f7793ce1359667d072\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.2.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.2.3-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.2.3\"\n + \ },\n \"sha256Digest\": \"b4757151ad2796cac8fcc43a363c0fbbf5de270f043d8fd8ccd51b377abfd61c\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.2.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.2.2\"\n + \ },\n \"sha256Digest\": \"2011cf5d186b713df3b14c09cfb63e52e843c015f0cc4a7ff558b161c9e225cf\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.2.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.0.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.2.1\"\n + \ },\n \"sha256Digest\": \"0d5bfcbed4e418f5ce79377a2e392f5f61abb0d5e6f8ce164940b83b5cfdbcd5\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.2.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==2.10.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.2.0\"\n + \ },\n \"sha256Digest\": \"308d953ecabc7b59fa6b3e545404279bc18376b8c129580124c443e866e3cb54\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.1.3-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==2.10.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.1.3\"\n + \ },\n \"sha256Digest\": \"63573d92742ab3ff2cdb73de39ea17821d3044503382c528e39a28f6224b8acb\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.1.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==2.10.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.1.2\"\n + \ },\n \"sha256Digest\": \"ffcb38d3653195dc30ce93066b5aff3ff7037be81232db4afcb11ef99f3de844\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.1.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-mgmt-azurearcdata\",\n + \ \"colorama (==0.4.4)\",\n \"jinja2 + (==2.10.3)\",\n \"jsonpatch (==1.24)\",\n \"jsonpath-ng + (==1.4.3)\",\n \"jsonschema (==3.2.0)\",\n + \ \"kubernetes (==12.0.1)\",\n \"ndjson + (==0.3.1)\",\n \"pem (==21.2.0)\",\n \"pydash + (==4.8.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Tools for managing ArcData.\",\n \"version\": + \"1.1.1\"\n },\n \"sha256Digest\": \"1cb2dcfadd539cdc7f6acbfcd44db5f7d380ec9a896f5eaa47ebabbe89786d07\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.1.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-mgmt-azurearcdata\",\n + \ \"jinja2 (==2.10.3)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==12.0.1)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"dedb4ac6de099d8fd565d427ac339cc23a10be76ca0147f6babec6096fc377e7\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.0.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"jinja2 + (==2.10.3)\",\n \"jsonpatch (==1.24)\",\n \"jsonpath-ng + (==1.4.3)\",\n \"jsonschema (==3.2.0)\",\n + \ \"kubernetes (==12.0.1)\",\n \"ndjson + (==0.3.1)\",\n \"pem (==21.2.0)\",\n \"pydash + (==4.8.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Tools for managing ArcData.\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"4045fabe61c0287003a4626d0f8d27c2839b3575a63ce2bdfe57ed214171acf8\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-0.0.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-0.0.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 1 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Programming Language + :: Python\",\n \"Programming Language :: Python :: + 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"dpgswdist@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/sql/sql-server/azure-arc/overview?view=sql-server-ver15\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"jinja2 + (==2.10.3)\",\n \"jsonpatch (==1.24)\",\n \"jsonpath-ng + (==1.4.3)\",\n \"jsonschema (==3.2.0)\",\n + \ \"kubernetes (==12.0.1)\",\n \"ndjson + (==0.3.1)\",\n \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"0.0.2\"\n + \ },\n \"sha256Digest\": \"d14aa3046b7a9c3bca67c735eeb35fb24ff5ed240212724d3f229eb23280abae\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-0.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-0.0.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/sql/sql-server/azure-arc/overview?view=sql-server-ver15\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"jinja2 + (==2.10.3)\",\n \"jsonpatch (==1.24)\",\n \"jsonpath-ng + (==1.4.3)\",\n \"kubernetes (==11.0.0)\",\n + \ \"pydash (==4.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"0.0.1\"\n + \ },\n \"sha256Digest\": \"e727a7bf123aa15b406455f268be8a906907d6d32bd314d122b83d006767adc8\"\n + \ }\n ],\n \"arcgateway\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/arcgateway-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"arcgateway-1.0.0b1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/arcgateway\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcgateway\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Arcgateway Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"330fd1f1974bece16dc924e353731b1f0f4403a58e36e3347705f01dbdbf03d1\"\n + \ }\n ],\n \"astronomer\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/astronomer-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"astronomer-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/astronomer\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"astronomer\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Astronomer Extension.\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"b4ca41b5d9cb77aed2b462ded4a392ae3ce896ce8d9cb94a08671d0cb68176cd\"\n + \ }\n ],\n \"attestation\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/attestation-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"attestation-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/attestation\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"attestation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AttestationManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"1d4e9b832a3f50b33428d565478a2e655c81d49277c07dc909f1485b62ba5372\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/attestation-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"attestation-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/attestation\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"attestation\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pyjwt (==1.7.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools AttestationManagementClient Extension\",\n + \ \"version\": \"0.2.0\"\n },\n \"sha256Digest\": + \"895328b45d8bcfe45e4937885572cd1f39d23bc49f88314713a462bf1a367cc9\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/attestation-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"attestation-0.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/attestation\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"attestation\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pyjwt (==1.7.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools AttestationManagementClient Extension\",\n + \ \"version\": \"0.2.1\"\n },\n \"sha256Digest\": + \"1176c4e5d1d34a791f301ee6416e695e781eee3f41d0f372463405c68478727c\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/attestation-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"attestation-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/attestation\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"attestation\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pyjwt (~=2.4.0)\",\n \"pyjwt~=2.4.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AttestationManagementClient + Extension\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"e58277c292214e3b0a1e66de5c52340dedf25f5c7c356460b20259d5faceef46\"\n + \ }\n ],\n \"authV2\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/authV2-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"authV2-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/authV2\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"authV2\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Authv2 Extension\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"240b7f5f1ac3fc2a72586cde8ff8cc2d2f469a1b6c6378822129b33233c0d7b7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/authV2-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"authV2-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/authV2\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"authV2\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Authv2 Extension\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"0beb143e3ca4f4f9706877d416b07cb9f9796bd696a0a642825d8ca48217edb0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/authV2-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"authV2-0.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/authV2\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"authV2\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Authv2 Extension\",\n \"version\": \"0.1.2\"\n },\n + \ \"sha256Digest\": \"b98f07b7b669416ef4386d2a0834364a6c8d0278ddfffd35c1be5eb931968d5b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/authV2-0.1.3-py3-none-any.whl\",\n + \ \"filename\": \"authV2-0.1.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/authV2\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"authV2\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Authv2 Extension\",\n \"version\": \"0.1.3\"\n },\n + \ \"sha256Digest\": \"eb05636f8c78e2f83b7f452fe56f5a9ae496d6909dc36924ae5f98a2fb5bce41\"\n + \ }\n ],\n \"automanage\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/automanage-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"automanage-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.44.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/automanage\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"automanage\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Automanage Extension.\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"ca6771604ac50df02682f581b52ca92d775f0fd2f187f627a6bfe62d4fdb6651\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/automanage-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"automanage-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.44.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/automanage\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"automanage\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Automanage Extension.\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"40c62cf4389bc282e4c06d0f2688087efb4a8ca6bb7a2b37fc6befb79dc2c526\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/automanage-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"automanage-0.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.44.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/automanage\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"automanage\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Automanage Extension.\",\n \"version\": \"0.1.2\"\n + \ },\n \"sha256Digest\": \"42341a6cfdacb3af0433b10b3e9bcb5226d4c7fb59730378408a957662266551\"\n + \ }\n ],\n \"automation\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/automation-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"automation-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.13.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/automation\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"automation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AutomationClient Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"779f996ffab9fd76438d8938216fcbeb6f9aecad3a23bd2097731182607e4d7a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/automation-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"automation-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.13.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/automation\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"automation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AutomationClient Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"99640d86e3596a806ea2eca6b8f67f02fea74951ffa0606bff60fbfc88da7d6e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/automation-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"automation-0.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.39.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/automation\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"automation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AutomationClient Extension\",\n \"version\": \"0.1.2\"\n + \ },\n \"sha256Digest\": \"1188040d2b9bef20051619c919db3726c38e1d9720c7e375418fbdec714d4309\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/automation-0.1.3-py3-none-any.whl\",\n + \ \"filename\": \"automation-0.1.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.39.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/automation\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"automation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AutomationClient Extension\",\n \"version\": \"0.1.3\"\n + \ },\n \"sha256Digest\": \"c28dd73a8ab147f2d268bb735e8658f78b60bf6d628904158b0c0e80c8cfcf18\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/automation-0.1.4-py3-none-any.whl\",\n + \ \"filename\": \"automation-0.1.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.39.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/automation\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"automation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AutomationClient Extension\",\n \"version\": \"0.1.4\"\n + \ },\n \"sha256Digest\": \"cf27c3366e48ad1758a30745d1cd05703b15c84d0fa95369c4a098620ff93df8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/automation-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"automation-0.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.40.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/automation\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"automation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AutomationClient Extension\",\n \"version\": \"0.2.1\"\n + \ },\n \"sha256Digest\": \"18cb0bfa7c7121bd7afdceea2182ac0fe3b174933bbb897b023c61e9dc05459b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/automation-0.2.2-py3-none-any.whl\",\n + \ \"filename\": \"automation-0.2.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.40.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/automation\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"automation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AutomationClient Extension\",\n \"version\": \"0.2.2\"\n + \ },\n \"sha256Digest\": \"1337a8bf90739df646231533801cce9050bad641c627382468c86af5f2f99d89\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/automation-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"automation-1.0.0b1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/automation\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"automation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AutomationClient Extension\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"d31fe0433fa30a6e009f7b9bee6c417a686ed87502dd987b9ac8ad113383915b\"\n + \ }\n ],\n \"azure-batch-cli-extensions\": [\n {\n + \ \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-2.5.3/azure_batch_cli_extensions-2.5.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_batch_cli_extensions-2.5.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"2.0.58\",\n \"azext.minCliCoreVersion\": \"2.0.24\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-batch-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-batch-cli-extensions\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-batch-extensions (<4.1,>=4.0.0)\",\n + \ \"pycparser (==2.18)\"\n ]\n + \ }\n ],\n \"summary\": + \"Additional commands for working with Azure Batch service\",\n \"version\": + \"2.5.3\"\n },\n \"sha256Digest\": \"cc30b985edd5de0233d4fd283cfa29390d119c223b2f819ca36e071f759d5485\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-3.0.4/azure_batch_cli_extensions-3.0.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_batch_cli_extensions-3.0.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"2.1.0\",\n \"azext.minCliCoreVersion\": \"2.0.59\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-batch-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-batch-cli-extensions\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-batch-extensions (<5.1,>=5.0.0)\",\n + \ \"pycparser (==2.18)\"\n ]\n + \ }\n ],\n \"summary\": + \"Additional commands for working with Azure Batch service\",\n \"version\": + \"3.0.4\"\n },\n \"sha256Digest\": \"9e76b7242934ceb8ae48c65f5469312522a034f4abf66d4771fb721aee04a502\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-4.0.0/azure_batch_cli_extensions-4.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_batch_cli_extensions-4.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"2.1.0\",\n \"azext.minCliCoreVersion\": \"2.0.69\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-batch-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-batch-cli-extensions\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-batch-extensions (<6.1,>=6.0.0)\",\n + \ \"pycparser (==2.18)\"\n ]\n + \ }\n ],\n \"summary\": + \"Additional commands for working with Azure Batch service\",\n \"version\": + \"4.0.0\"\n },\n \"sha256Digest\": \"3045dc24858b9acfed13a517038830ddc643aef779de0d14617c49c9fd2dcbd5\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-5.0.1/azure_batch_cli_extensions-5.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_batch_cli_extensions-5.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"3.0.0\",\n \"azext.minCliCoreVersion\": \"2.0.73\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-batch-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-batch-cli-extensions\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-batch-extensions (<7.1,>=7.0.0)\",\n + \ \"pycparser (==2.18)\"\n ]\n + \ }\n ],\n \"summary\": + \"Additional commands for working with Azure Batch service\",\n \"version\": + \"5.0.1\"\n },\n \"sha256Digest\": \"bf07b63782e0f6446302971afaf8b5ec5bb6dbc00449bf3276511993abf8cd61\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-6.0.0/azure_batch_cli_extensions-6.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_batch_cli_extensions-6.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"3.0.0\",\n \"azext.minCliCoreVersion\": \"2.0.74\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-batch-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-batch-cli-extensions\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-batch-extensions (<8.1,>=8.0.0)\",\n + \ \"pycparser (==2.18)\"\n ]\n + \ }\n ],\n \"summary\": + \"Additional commands for working with Azure Batch service\",\n \"version\": + \"6.0.0\"\n },\n \"sha256Digest\": \"6955a0d960d9c4df6935b9058f67c8c42872c8716d8d2a4f76e9e6ce72eb66ab\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-7.0.0/azure_batch_cli_extensions-7.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_batch_cli_extensions-7.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-batch-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-batch-cli-extensions\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-batch-extensions (<9.1,>=9.0.0)\",\n + \ \"pycparser (==2.18)\"\n ]\n + \ }\n ],\n \"summary\": + \"Additional commands for working with Azure Batch service\",\n \"version\": + \"7.0.0\"\n },\n \"sha256Digest\": \"65dd7671262b1f0cf35b26970a816d7aea22d02c822c81f3ea4cf1028a7c2e16\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-batch-cli-extensions/releases/download/azure-batch-cli-extensions-7.0.1/azure_batch_cli_extensions-7.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_batch_cli_extensions-7.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-batch-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-batch-cli-extensions\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-batch-extensions (<9.1,>=9.0.0)\",\n + \ \"pycparser (==2.18)\"\n ]\n + \ }\n ],\n \"summary\": + \"Additional commands for working with Azure Batch service\",\n \"version\": + \"7.0.1\"\n },\n \"sha256Digest\": \"42ee1d2dadcfa353a6eee9010c50325e9353ee2817d688c1f804d301141901e3\"\n + \ }\n ],\n \"azure-cli-ml\": [\n {\n \"downloadUrl\": + \"https://azurecliext.blob.core.windows.net/release/azure_cli_ml-1.41.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_cli_ml-1.41.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 3 - Alpha\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\"\n + \ ],\n \"description_content_type\": + \"text/x-rst\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\",\n + \ \"license\": \"LICENSE.txt\"\n },\n + \ \"project_urls\": {\n \"Home\": + \"https://docs.microsoft.com/python/api/overview/azure/ml/?view=azure-ml-py\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"Proprietary https://aka.ms/azureml-preview-sdk-license + \",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-cli-ml\",\n \"requires_python\": \">=3.5,<4\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"adal (>=1.2.1)\",\n \"azureml-cli-common + (~=1.41)\",\n \"cryptography (<=3.3.2)\",\n + \ \"docker (>=3.7.2)\",\n \"msrest + (>=0.6.6)\",\n \"pyyaml (>=5.1.0)\",\n \"requests + (>=2.21.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureML + Command Module\",\n \"test_requires\": [\n {\n + \ \"requires\": [\n \"azure-keyvault\",\n + \ \"mock\",\n \"nose\",\n + \ \"unittest-xml-reporting\"\n ]\n + \ }\n ],\n \"version\": + \"1.41.0\"\n },\n \"sha256Digest\": \"c3c5d2bb5ecd63d0d416bf9bc61b9f12df247d2f558957047ffc431e42fcb6b0\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliext.blob.core.windows.net/release/azure_cli_ml-1.37.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_cli_ml-1.37.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 3 - Alpha\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\"\n + \ ],\n \"description_content_type\": + \"text/x-rst\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\",\n + \ \"license\": \"LICENSE.txt\"\n },\n + \ \"project_urls\": {\n \"Home\": + \"https://docs.microsoft.com/python/api/overview/azure/ml/?view=azure-ml-py\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"Proprietary https://aka.ms/azureml-preview-sdk-license + \",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-cli-ml\",\n \"requires_python\": \">=3.5,<4\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"adal (>=1.2.1)\",\n \"azureml-cli-common + (~=1.37.0)\",\n \"cryptography (<=3.3.2)\",\n + \ \"docker (>=3.7.2)\",\n \"msrest + (>=0.6.6)\",\n \"pyyaml (>=5.1.0)\",\n \"requests + (>=2.21.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureML + Command Module\",\n \"test_requires\": [\n {\n + \ \"requires\": [\n \"azure-keyvault\",\n + \ \"mock\",\n \"nose\",\n + \ \"unittest-xml-reporting\"\n ]\n + \ }\n ],\n \"version\": + \"1.37.0\"\n },\n \"sha256Digest\": \"7dc527ad16592a775d79341d7711df31497b66bf616010890bd1f8831c81012d\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliext.blob.core.windows.net/release/azure_cli_ml-1.5.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_cli_ml-1.5.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"2.29.2\",\n \"azext.minCliCoreVersion\": \"2.0.28\",\n + \ \"classifiers\": [\n \"Development + Status :: 3 - Alpha\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\"\n ],\n \"description_content_type\": + \"text/x-rst\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\",\n + \ \"license\": \"LICENSE.txt\"\n },\n + \ \"project_urls\": {\n \"Home\": + \"https://docs.microsoft.com/azure/machine-learning/service/\"\n }\n + \ }\n },\n \"extras\": + [],\n \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"Proprietary https://aka.ms/azureml-preview-sdk-license \",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-cli-ml\",\n \"requires_python\": + \">=3.5,<4\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"adal + (>=1.2.1)\",\n \"azureml-cli-common (~=1.5.0)\",\n + \ \"docker (>=3.7.2)\",\n \"msrest + (>=0.6.6)\",\n \"pyyaml (>=5.1.0)\",\n \"requests + (>=2.21.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureML + Command Module\",\n \"test_requires\": [\n {\n + \ \"requires\": [\n \"azure-keyvault\",\n + \ \"mock\",\n \"nose\",\n + \ \"unittest-xml-reporting\"\n ]\n + \ }\n ],\n \"version\": + \"1.5.0\"\n },\n \"sha256Digest\": \"a535f01501a06f70d26a75f5ccde2d32640d3c7efec302fc2fc454bfb867e946\"\n + \ }\n ],\n \"azure-devops\": [\n {\n \"downloadUrl\": + \"https://github.com/Azure/azure-devops-cli-extension/releases/download/20190805.1/azure_devops-0.12.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_devops-0.12.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.49\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"VSTS_Social@microsoft.com\",\n \"name\": + \"Microsoft\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Microsoft/azure-devops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-devops\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"distro (==1.3.0)\",\n \"msrest + (<0.7.0,>=0.6.0)\",\n \"python-dateutil (==2.7.3)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Tools for managing Azure DevOps.\",\n \"version\": + \"0.12.0\"\n },\n \"sha256Digest\": \"2abdfd1b760e1968176cd4043e2db7edf951978c6a2182eb5e79bb0c8070af4c\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-devops-cli-extension/releases/download/20200113.1/azure_devops-0.17.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_devops-0.17.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.69\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"VSTS_Social@microsoft.com\",\n \"name\": + \"Microsoft\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Microsoft/azure-devops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-devops\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"distro (==1.3.0)\",\n \"msrest + (<0.7.0,>=0.6.0)\",\n \"python-dateutil (==2.7.3)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Tools for managing Azure DevOps.\",\n \"version\": + \"0.17.0\"\n },\n \"sha256Digest\": \"1e891afc8b6ee52c62c4f99802d77728ff60e89e4c08972325178cc4fdac6be9\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-devops-cli-extension/releases/download/20211028.1/azure_devops-0.21.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_devops-0.21.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.2.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"VSTS_Social@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Microsoft/azure-devops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-devops\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"distro (==1.3.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing Azure DevOps.\",\n \"version\": \"0.21.0\"\n + \ },\n \"sha256Digest\": \"7ab5fd8d8f05bbd78d2e5fce961a06380aa258445561b88fb1ca02261cae365a\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-devops-cli-extension/releases/download/20230127.2/azure_devops-0.26.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_devops-0.26.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"VSTS_Social@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Microsoft/azure-devops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-devops\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"distro (==1.3.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing Azure DevOps.\",\n \"version\": \"0.26.0\"\n + \ },\n \"sha256Digest\": \"565fc207f1740c26957f382fe2eefabec254011fb2d1b50c0e540f894f47dcbe\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-devops-cli-extension/releases/download/20240206.1/azure_devops-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_devops-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"VSTS_Social@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Microsoft/azure-devops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-devops\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"distro (==1.3.0)\",\n \"distro==1.3.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Tools for managing Azure DevOps.\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"658a2854d8c80f874f9382d421fa45abf6a38d00334737dda006f8dec64cf70a\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-devops-cli-extension/releases/download/20240514.1/azure_devops-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_devops-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"VSTS_Social@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Microsoft/azure-devops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-devops\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"distro (==1.3.0)\",\n \"distro==1.3.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Tools for managing Azure DevOps.\",\n \"version\": + \"1.0.1\"\n },\n \"sha256Digest\": \"f300d0288f017148514ebe6f5912aef10c7a6f29bdc0c916b922edf1d75bc7db\"\n + \ }\n ],\n \"azure-firewall\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.1.3\"\n },\n + \ \"sha256Digest\": \"116c1324206e8aa0e7cffdd719a12e87b2977a061fcd9fb96ae4b6fbe223e93f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.1.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.1.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.1.9\"\n },\n + \ \"sha256Digest\": \"f20c18b5b176dd39815dee4d344368774b58bb2f4f03c28b89ee08212e45856a\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"7934510bc2ed4d83c8dbee7d2d22c3de2332b96020e2f45515035153f94a246f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.3.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.3.0\"\n },\n + \ \"sha256Digest\": \"12e5f8567ba8a74988f50ec6ed3539fad5b9e491727b0bc2c16e7acc34f49423\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.3.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.3.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.3.1\"\n },\n + \ \"sha256Digest\": \"32e10a4e96a891151959680ff3cbf3e28ea0cf38e49ac062c49c668d00e5d7d7\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.4.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.4.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.4.0\"\n },\n + \ \"sha256Digest\": \"5c79cedfc5abf134f4b47ad5d867ff5852d2ba17f710d44a2101fe0aa51b1a48\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.5.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.5.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.5.0\"\n },\n + \ \"sha256Digest\": \"ceb70fe380937e5cb42998648a3218313b1425286705743275a808bb15d70d03\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.5.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.5.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.5.1\"\n },\n + \ \"sha256Digest\": \"40581d4aaf52a8a1f8deccf3be641385348251b34ffeb4c65193111150002699\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.6.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.6.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.6.0\"\n },\n + \ \"sha256Digest\": \"b22c81a341f1742ebb2c32c45af1470b12bfe2d03907d43206cf8d0860e058f6\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.6.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.6.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.6.1\"\n },\n + \ \"sha256Digest\": \"4bf18f81d1b97d458181154f51803103745182cf68972180507aa8c291c60a94\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.6.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.6.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.6.2\"\n },\n + \ \"sha256Digest\": \"30539d78089ae73cbc012d487de7b9e9717096e2abf960ca4e7057ef77222a25\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.7.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.7.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.7.0\"\n },\n + \ \"sha256Digest\": \"b6ac17ae8f18d9c702cece94822c0d00dbc13b7ed60a7831281e2e5391cefe39\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.8.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.8.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.8.0\"\n },\n + \ \"sha256Digest\": \"897e1ff2ff69b6f2969dc97e97847a25b7a9060091024a96e0e2ca0876c0cd53\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.9.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.9.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.9.0\"\n },\n + \ \"sha256Digest\": \"ea9f1a318e27266652bb6121d93ff5595b2ffe1227efc3ca1ab69b29349bb9d2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.10.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.10.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.10.0\"\n },\n + \ \"sha256Digest\": \"94c5b15b65b3fe78fa4a10b839ace1a5eb627e87f4aae2bc5728e159388c9599\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.11.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.11.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.11.0\"\n },\n + \ \"sha256Digest\": \"31100b4d554939502454bf9dbe0a42e2ee4319a1af3f9c93c9b51200bb547707\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.12.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.12.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.12.0\"\n },\n + \ \"sha256Digest\": \"e8273165377adcbc1effcaaa447d4b7b38c49aadd1ff9255cabf400f6846edb4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.13.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.13.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.13.0\"\n },\n + \ \"sha256Digest\": \"04e0761aeed15ac457c5831c89bcbaf5f669fa943ded8f71c0f54431621103b0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.14.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.14.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.14.0\"\n },\n + \ \"sha256Digest\": \"c68453741e1c32f310333f81a22ab8a822124101c36e043b6563105a9c84f2e2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.14.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.14.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.14.1\"\n },\n + \ \"sha256Digest\": \"bc32e5ea361f86fd03ec6a6d7743ed431038fcacfd85e48bdc3c1996448fc08d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.14.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.14.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.14.2\"\n },\n + \ \"sha256Digest\": \"35ac3318f0372b890770746c320cc3d98022a08bd808e3aa433d2dcf20405bf6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.14.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.14.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.14.3\"\n },\n + \ \"sha256Digest\": \"a1838d2953400b76c7bca95ef9b6c64377d8b3d2485f2164e286906c62f9ef5b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.14.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.14.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.14.4\"\n },\n + \ \"sha256Digest\": \"1b2dfdf90570df596e28792d1b378bb155cd57b2fad8fbb6eeb1617316bce2e0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.14.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.14.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.14.5\"\n },\n + \ \"sha256Digest\": \"d2261b7a6a17f8a15d4fbfb1f3bb65bada2e49c76c251f3e91f9a91c9d613188\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.14.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.14.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.14.6\"\n },\n + \ \"sha256Digest\": \"c04bfce1c7acbeb50a6f156965bbf64336c9089235b27bb4ca5b50a065bc19d6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.14.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.14.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.14.7\"\n },\n + \ \"sha256Digest\": \"a248d1a3fa776015726cc3c9a073c816afef9f174309f6c0f65787d624e2337b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-0.14.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-0.14.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"0.14.8\"\n },\n + \ \"sha256Digest\": \"d664c8228e829d1a70a85146a8b46d0e26abae22e0765a0277e18c4e664d8200\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.50.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"project_urls\": {\n \"Home\": + \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"739f20463bf763ccfa08358f3535bfdbd1671fc16ef11c9428e8bade8154221b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"project_urls\": {\n \"Home\": + \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"1.0.1\"\n },\n + \ \"sha256Digest\": \"920023c55ae72d7e85baa43d81d96683be0e8348228b6f8e89e479fd4092c0f8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-1.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-1.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"project_urls\": {\n \"Home\": + \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"1.1.0\"\n },\n + \ \"sha256Digest\": \"562cc396c6afa1ef996c35b7bed801b3fd9677e4c6923f1148cb09255b24d1ef\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-1.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-1.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"project_urls\": {\n \"Home\": + \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"1.2.0\"\n },\n + \ \"sha256Digest\": \"5468cc09b8ea7918176b5e95aa3c24c7ad9b7d1b68c47d16bf522a053fd811e8\"\n + \ }\n ],\n \"azure-iot\": [\n {\n \"downloadUrl\": + \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.10.11/azure_iot-0.10.11-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.10.11-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-iot\",\n \"requires_python\": + \">=3.6,<4\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"jsonschema + (==3.2.0)\",\n \"packaging\",\n \"paho-mqtt + (==1.5.0)\"\n ]\n }\n ],\n + \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n + \ \"version\": \"0.10.11\"\n },\n \"sha256Digest\": + \"8a7892996403fd5fd6850262acc176605704990db9d0a95c743545f1c0659d83\"\n },\n + \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.10.15/azure_iot-0.10.15-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.10.15-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-iot\",\n \"requires_python\": + \">=3.6,<4\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"jsonschema + (==3.2.0)\",\n \"packaging\",\n \"paho-mqtt + (==1.5.0)\"\n ]\n }\n ],\n + \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n + \ \"version\": \"0.10.15\"\n },\n \"sha256Digest\": + \"465b8a2688260973519c00dd48989faa015423b195d20efb423e976c49924983\"\n },\n + \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.10.17/azure_iot-0.10.17-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.10.17-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.6,<4\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-iot-device (~=2.5)\",\n \"jsonschema + (~=3.2.0)\",\n \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.10.17\"\n },\n \"sha256Digest\": \"71f449108419e66f4b8f72a0d9b544e7a38c7fc4b3fdfcab9a9088dff3190710\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.11.0/azure_iot-0.11.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.11.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.6,<4\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-iot-device (~=2.5)\",\n \"jsonschema + (~=3.2.0)\",\n \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.11.0\"\n },\n \"sha256Digest\": \"b599137425d8b0df615813b9cbedb02d43549acf3ae0c9a703f5d636cf05ebf9\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.12.1/azure_iot-0.12.1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.12.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.6,<4\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-iot-device (~=2.5)\",\n \"jsonschema + (~=3.2.0)\",\n \"msrestazure (<2.0.0,>=0.6.3)\",\n + \ \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.12.1\"\n },\n \"sha256Digest\": \"4cc809c496ecda0c892b664d0d1de58586b56db9211c3d12c96c640bf8d8c84f\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.13.0/azure_iot-0.13.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.13.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.24.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.6,<4\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-iot-device (~=2.5)\",\n \"jsonschema + (~=3.2.0)\",\n \"msrestazure (<2.0.0,>=0.6.3)\",\n + \ \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.13.0\"\n },\n \"sha256Digest\": \"a8078483a23ed656cb79816dc8e7c39f3c18a04945b4366edc99a76897419bd2\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.14.0/azure_iot-0.14.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.14.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.24.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.6,<4\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-iot-device (~=2.5)\",\n \"jsonschema + (~=3.2.0)\",\n \"msrestazure (<2.0.0,>=0.6.3)\",\n + \ \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.14.0\"\n },\n \"sha256Digest\": \"56e07939e0f60412c8dce20a278127be4768a4cd8c487e5201396428e1b2f86f\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.14.1/azure_iot-0.14.1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.14.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.24.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.6,<4\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-iot-device (~=2.5)\",\n \"jsonschema + (~=3.2.0)\",\n \"msrestazure (<2.0.0,>=0.6.3)\",\n + \ \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.14.1\"\n },\n \"sha256Digest\": \"9138b2610ac1ad775d4012e532cfa273a2d56dc2a649aa71d838f3c26d74b77d\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.15.0/azure_iot-0.15.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.15.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.7\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-iot-device (~=2.11)\",\n \"azure-mgmt-core + (<2.0.0,>=1.3.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.15.0\"\n },\n \"sha256Digest\": \"63243fc8edb3a38636d706fc280a95aa13e7dfc1be455f62e41af1c114260049\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.16.1/azure_iot-0.16.1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.16.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.7\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-iot-device (~=2.11)\",\n \"azure-mgmt-core + (<2.0.0,>=1.3.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.16.1\"\n },\n \"sha256Digest\": \"d6c814af4bdc4020bbb2971f718796fac0e12a4319258e6704d711c2f9adca38\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.17.0/azure_iot-0.17.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.17.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.7\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core (<2.0.0,<2.0.0azure-mgmt-core>=1.3.0,>=1.24.0)\",\n + \ \"azure-iot-device (~=2.11)\",\n \"jsonschema + (~=3.2.0)\",\n \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.17.0\"\n },\n \"sha256Digest\": \"924d4cf255efe8a8950d968ed474be42b9da790c46381893a1d2892fdf72281e\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.17.1/azure_iot-0.17.1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.17.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.7\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core (<2.0.0,>=1.24.0)\",\n \"azure-iot-device + (~=2.11)\",\n \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n + \ \"jsonschema (~=3.2.0)\",\n \"msrest + (>=0.6.21)\",\n \"msrestazure (<2.0.0,>=0.6.3)\",\n + \ \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.17.1\"\n },\n \"sha256Digest\": \"5edb56987e339e6eac50190d309e8b62f1da8e76c943537b8bdf45833d2d6307\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.17.3/azure_iot-0.17.3-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.17.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.30.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.7\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core (<2.0.0,>=1.24.0)\",\n \"azure-iot-device + (~=2.11)\",\n \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n + \ \"jsonschema (~=3.2.0)\",\n \"msrest + (>=0.6.21)\",\n \"msrestazure (<2.0.0,>=0.6.3)\",\n + \ \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.17.3\"\n },\n \"sha256Digest\": \"bf343936bd2f515c46d8cff9b59cc340eb88c0ee2f4be93fe9d2a9d4ba863346\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.18.0/azure_iot-0.18.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.18.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.7\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core (<2.0.0,>=1.24.0)\",\n \"azure-identity + (<2.0.0,>=1.6.1)\",\n \"azure-iot-device (~=2.11)\",\n + \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \"jsonschema + (~=3.2.0)\",\n \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.18.0\"\n },\n \"sha256Digest\": \"b57987fe6b4627d4184db54715e71f5a28d7b16fb346352a37c0bf1ea5f4640e\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.18.1/azure_iot-0.18.1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.18.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.7\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core (<2.0.0,>=1.24.0)\",\n \"azure-identity + (<2.0.0,>=1.6.1)\",\n \"azure-iot-device (~=2.11)\",\n + \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.14.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.18.1\"\n },\n \"sha256Digest\": \"3e5e902917c1e78984a9b531289ec82b483d6b1964a9411d904c532d19f4431c\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.18.2/azure_iot-0.18.2-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.18.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.7\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core (<2.0.0,>=1.24.0)\",\n \"azure-identity + (<2.0.0,>=1.6.1)\",\n \"azure-iot-device (~=2.11)\",\n + \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.14.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.18.2\"\n },\n \"sha256Digest\": \"a0ca45e50492182b86206f1019f4d8c560307e05c4d3264968899481d5d9210c\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.18.3/azure_iot-0.18.3-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.18.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.7\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core (<2.0.0,>=1.24.0)\",\n \"azure-identity + (<2.0.0,>=1.6.1)\",\n \"azure-iot-device (~=2.11)\",\n + \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.14.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tqdm + (~=4.62)\"\n ]\n },\n {\n + \ \"extra\": \"uamqp\",\n \"requires\": + [\n \"uamqp (~=1.2)\"\n ]\n + \ },\n {\n \"environment\": + \"python_version < \\\"3.8\\\"\",\n \"requires\": + [\n \"importlib-metadata\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT extension for Azure CLI.\",\n \"version\": + \"0.18.3\"\n },\n \"sha256Digest\": \"52b6e72dcb5084d758da605dfe3a4983c1d5ff27a338d143b89055215da45143\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.19.0/azure_iot-0.19.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.19.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.7\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core (<2.0.0,>=1.24.0)\",\n \"azure-identity + (<2.0.0,>=1.6.1)\",\n \"azure-iot-device (~=2.11)\",\n + \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.14.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tomli + (~=2.0)\",\n \"tomli-w (~=1.0)\",\n \"tqdm + (~=4.62)\",\n \"treelib (~=1.6)\"\n ]\n + \ },\n {\n \"extra\": + \"uamqp\",\n \"requires\": [\n \"uamqp + (~=1.2)\"\n ]\n },\n {\n + \ \"environment\": \"python_version < \\\"3.8\\\"\",\n + \ \"requires\": [\n \"importlib-metadata\"\n + \ ]\n }\n ],\n + \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n + \ \"version\": \"0.19.0\"\n },\n \"sha256Digest\": + \"e1dded53fc9e298a1ef7e1fcbf3399517e3be015785ba526c26d1584064a4fe0\"\n },\n + \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.19.1/azure_iot-0.19.1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.19.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.7\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core (<2.0.0,>=1.24.0)\",\n \"azure-identity + (<2.0.0,>=1.6.1)\",\n \"azure-iot-device (~=2.11)\",\n + \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.14.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tomli + (~=2.0)\",\n \"tomli-w (~=1.0)\",\n \"tqdm + (~=4.62)\",\n \"treelib (~=1.6)\"\n ]\n + \ },\n {\n \"extra\": + \"uamqp\",\n \"requires\": [\n \"uamqp + (~=1.2)\"\n ]\n },\n {\n + \ \"environment\": \"python_version < \\\"3.8\\\"\",\n + \ \"requires\": [\n \"importlib-metadata\"\n + \ ]\n }\n ],\n + \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n + \ \"version\": \"0.19.1\"\n },\n \"sha256Digest\": + \"685c526081ce60fa2188106cd71c9412ee4765d5d74f3f0dce53466bdd9df15e\"\n },\n + \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.20.0/azure_iot-0.20.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.20.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.32.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.7\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core (<2.0.0,>=1.24.0)\",\n \"azure-identity + (<2.0.0,>=1.6.1)\",\n \"azure-iot-device (~=2.11)\",\n + \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.14.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tomli + (~=2.0)\",\n \"tomli-w (~=1.0)\",\n \"tqdm + (~=4.62)\",\n \"treelib (~=1.6)\"\n ]\n + \ },\n {\n \"extra\": + \"uamqp\",\n \"requires\": [\n \"uamqp + (~=1.2)\"\n ]\n },\n {\n + \ \"environment\": \"python_version < \\\"3.8\\\"\",\n + \ \"requires\": [\n \"importlib-metadata\"\n + \ ]\n }\n ],\n + \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n + \ \"version\": \"0.20.0\"\n },\n \"sha256Digest\": + \"6e304cee43f0e83d9aaa05c4283491fd6b4cf4ff4f685a3e08eaa8809ac8d5e7\"\n },\n + \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.21.0/azure_iot-0.21.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.21.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.7\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core (<2.0.0,>=1.24.0)\",\n \"azure-identity + (<2.0.0,>=1.6.1)\",\n \"azure-iot-device (~=2.11)\",\n + \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.14.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tomli + (~=2.0)\",\n \"tomli-w (~=1.0)\",\n \"tqdm + (~=4.62)\",\n \"treelib (~=1.6)\"\n ]\n + \ },\n {\n \"extra\": + \"uamqp\",\n \"requires\": [\n \"uamqp + (~=1.2)\"\n ]\n },\n {\n + \ \"environment\": \"python_version < \\\"3.8\\\"\",\n + \ \"requires\": [\n \"importlib-metadata\"\n + \ ]\n }\n ],\n + \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n + \ \"version\": \"0.21.0\"\n },\n \"sha256Digest\": + \"b88e0b14ec38b083525df4b8f5b24476158c468706f34925136a8d817363913e\"\n },\n + \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.21.1/azure_iot-0.21.1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.21.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.7\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core (<2.0.0,>=1.24.0)\",\n \"azure-identity + (<2.0.0,>=1.6.1)\",\n \"azure-iot-device (~=2.11)\",\n + \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.14.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tomli + (~=2.0)\",\n \"tomli-w (~=1.0)\",\n \"tqdm + (~=4.62)\",\n \"treelib (~=1.6)\"\n ]\n + \ },\n {\n \"extra\": + \"uamqp\",\n \"requires\": [\n \"uamqp + (~=1.2)\"\n ]\n },\n {\n + \ \"environment\": \"python_version < \\\"3.8\\\"\",\n + \ \"requires\": [\n \"importlib-metadata\"\n + \ ]\n }\n ],\n + \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n + \ \"version\": \"0.21.1\"\n },\n \"sha256Digest\": + \"fe3140351a6d7a630aba2473403de49b6f8f4af6b67d358396b659cb4fdfd64a\"\n },\n + \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.21.2/azure_iot-0.21.2-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.21.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.7\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core (<2.0.0,>=1.24.0)\",\n \"azure-identity + (<2.0.0,>=1.6.1)\",\n \"azure-iot-device (~=2.11)\",\n + \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.14.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tomli + (~=2.0)\",\n \"tomli-w (~=1.0)\",\n \"tqdm + (~=4.62)\",\n \"treelib (~=1.6)\"\n ]\n + \ },\n {\n \"extra\": + \"uamqp\",\n \"requires\": [\n \"uamqp + (~=1.2)\"\n ]\n },\n {\n + \ \"environment\": \"python_version < \\\"3.8\\\"\",\n + \ \"requires\": [\n \"importlib-metadata\"\n + \ ]\n }\n ],\n + \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n + \ \"version\": \"0.21.2\"\n },\n \"sha256Digest\": + \"1f3241199456d299b17e2875ef9888de4c2977ddcfd0a3ae72087c9ff389b730\"\n },\n + \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.21.3/azure_iot-0.21.3-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.21.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.7\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core (<2.0.0,>=1.24.0)\",\n \"azure-identity + (<2.0.0,>=1.6.1)\",\n \"azure-iot-device (~=2.11)\",\n + \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.14.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tomli + (~=2.0)\",\n \"tomli-w (~=1.0)\",\n \"tqdm + (~=4.62)\",\n \"treelib (~=1.6)\"\n ]\n + \ },\n {\n \"extra\": + \"uamqp\",\n \"requires\": [\n \"uamqp + (~=1.2)\"\n ]\n },\n {\n + \ \"environment\": \"python_version < \\\"3.8\\\"\",\n + \ \"requires\": [\n \"importlib-metadata\"\n + \ ]\n }\n ],\n + \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n + \ \"version\": \"0.21.3\"\n },\n \"sha256Digest\": + \"17ed8c55d8cfdf0a874d8e37dd6a6a554f6f077722c7f06dc76cf3c31ef9c46c\"\n },\n + \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.21.4/azure_iot-0.21.4-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.21.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.7\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core (<2.0.0,>=1.24.0)\",\n \"azure-identity + (<2.0.0,>=1.6.1)\",\n \"azure-iot-device (~=2.11)\",\n + \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.14.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tomli + (~=2.0)\",\n \"tomli-w (~=1.0)\",\n \"tqdm + (~=4.62)\",\n \"treelib (~=1.6)\"\n ]\n + \ },\n {\n \"extra\": + \"uamqp\",\n \"requires\": [\n \"uamqp + (~=1.2)\"\n ]\n },\n {\n + \ \"environment\": \"python_version < \\\"3.8\\\"\",\n + \ \"requires\": [\n \"importlib-metadata\"\n + \ ]\n }\n ],\n + \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n + \ \"version\": \"0.21.4\"\n },\n \"sha256Digest\": + \"e61bb2dcea1faa208cfdf7346b0b296bb7d071f45d01536f9c3e32cdba8a9cca\"\n },\n + \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.21.5/azure_iot-0.21.5-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.21.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.7\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core (<2.0.0,>=1.24.0)\",\n \"azure-identity + (<2.0.0,>=1.6.1)\",\n \"azure-iot-device (~=2.11)\",\n + \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.14.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tomli + (~=2.0)\",\n \"tomli-w (~=1.0)\",\n \"tqdm + (~=4.62)\",\n \"treelib (~=1.6)\"\n ]\n + \ },\n {\n \"extra\": + \"uamqp\",\n \"requires\": [\n \"uamqp + (~=1.2)\"\n ]\n },\n {\n + \ \"environment\": \"python_version < \\\"3.8\\\"\",\n + \ \"requires\": [\n \"importlib-metadata\"\n + \ ]\n }\n ],\n + \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n + \ \"version\": \"0.21.5\"\n },\n \"sha256Digest\": + \"3a2bb6a15e68d519b378852223fc217148d93f43f828b0139fa6b7c7188f0074\"\n },\n + \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.22.0/azure_iot-0.22.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.22.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.8\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core (<2.0.0,>=1.24.0)\",\n \"azure-identity + (<2.0.0,>=1.6.1)\",\n \"azure-iot-device (~=2.11)\",\n + \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.14.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tomli + (~=2.0)\",\n \"tomli-w (~=1.0)\",\n \"tqdm + (~=4.62)\",\n \"treelib (~=1.6)\"\n ]\n + \ },\n {\n \"extra\": + \"uamqp\",\n \"requires\": [\n \"uamqp + (~=1.2)\"\n ]\n }\n ],\n + \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n + \ \"version\": \"0.22.0\"\n },\n \"sha256Digest\": + \"f0fa7e1c101042f8301234ec4e38df7cef967fdfd6f129a7d39686ddbb10c63e\"\n },\n + \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.23.0/azure_iot-0.23.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.23.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.8\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core (<2.0.0,>=1.24.0)\",\n \"azure-identity + (<2.0.0,>=1.6.1)\",\n \"azure-iot-device (~=2.11)\",\n + \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.14.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tomli + (~=2.0)\",\n \"tomli-w (~=1.0)\",\n \"tqdm + (~=4.62)\",\n \"treelib (~=1.6)\"\n ]\n + \ },\n {\n \"extra\": + \"uamqp\",\n \"requires\": [\n \"uamqp + (~=1.2)\"\n ]\n }\n ],\n + \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n + \ \"version\": \"0.23.0\"\n },\n \"sha256Digest\": + \"a160851a80aefb3fa12e9e5ac9c04511b8b058455c7d77b5ce7e79485b70ac41\"\n },\n + \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.23.1/azure_iot-0.23.1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.23.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot\",\n \"requires_python\": \">=3.8\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core (<2.0.0,>=1.24.0)\",\n \"azure-identity + (<2.0.0,>=1.6.1)\",\n \"azure-iot-device (~=2.11)\",\n + \ \"azure-mgmt-core (<2.0.0,>=1.3.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.14.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tomli + (~=2.0)\",\n \"tomli-w (~=1.0)\",\n \"tqdm + (~=4.62)\",\n \"treelib (~=1.6)\"\n ]\n + \ },\n {\n \"extra\": + \"uamqp\",\n \"requires\": [\n \"uamqp + (~=1.2)\"\n ]\n }\n ],\n + \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n + \ \"version\": \"0.23.1\"\n },\n \"sha256Digest\": + \"95ef8e340ce9a5309af9c3c8ffe67e1582baf199f21c60a74cdc7c987cf8c644\"\n },\n + \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.24.0/azure_iot-0.24.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.24.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"license_file\": \"LICENSE\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-iot\",\n \"requires_python\": + \">=3.8\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-core + (<2.0.0,>=1.24.0)\",\n \"azure-identity (<2.0.0,>=1.6.1)\",\n + \ \"azure-iot-device (~=2.11)\",\n \"azure-mgmt-core + (<2.0.0,>=1.3.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.14.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tomli + (~=2.0)\",\n \"tomli-w (~=1.0)\",\n \"tqdm + (~=4.62)\",\n \"treelib (~=1.6)\"\n ]\n + \ },\n {\n \"extra\": + \"uamqp\",\n \"requires\": [\n \"uamqp + (~=1.2)\"\n ]\n }\n ],\n + \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n + \ \"version\": \"0.24.0\"\n },\n \"sha256Digest\": + \"a36e41f28904f2f29efd38ebebda6823c0a9101bed3c00e0af03cfffcd721da1\"\n },\n + \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.25.0/azure_iot-0.25.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.25.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"license_file\": \"LICENSE\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-iot\",\n \"requires_python\": + \">=3.8\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-core + (<2.0.0,>=1.24.0)\",\n \"azure-identity (<2.0.0,>=1.6.1)\",\n + \ \"azure-iot-device (~=2.11)\",\n \"azure-mgmt-core + (<2.0.0,>=1.3.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.14.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tomli + (~=2.0)\",\n \"tomli-w (~=1.0)\",\n \"tqdm + (~=4.62)\",\n \"treelib (~=1.6)\"\n ]\n + \ },\n {\n \"extra\": + \"uamqp\",\n \"requires\": [\n \"uamqp + (<=1.6.8,>=1.2)\"\n ]\n }\n + \ ],\n \"summary\": \"The Azure IoT extension + for Azure CLI.\",\n \"version\": \"0.25.0\"\n },\n + \ \"sha256Digest\": \"7db4bc07667efa8472513d9e121fb2551fcaeae68255c7bc0768ad4177c1b1c6\"\n + \ }\n ],\n \"azure-iot-ops\": [\n {\n \"downloadUrl\": + \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.1.0b1/azure_iot_ops-0.1.0b1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.1.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.42.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"protobuf (~=4.25.0)\",\n \"rich + (<14.0,>=13.6)\"\n ]\n }\n + \ ],\n \"summary\": \"The Azure IoT Operations + extension for Azure CLI.\",\n \"version\": \"0.1.0b1\"\n + \ },\n \"sha256Digest\": \"a36f5dabf8b7055cbd6025a1e843961e1123e466fb013fd2d71974cc15d0fdb4\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.1.0b2/azure_iot_ops-0.1.0b2-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.1.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.42.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"protobuf (~=4.25.0)\",\n \"rich + (<14.0,>=13.6)\"\n ]\n }\n + \ ],\n \"summary\": \"The Azure IoT Operations + extension for Azure CLI.\",\n \"version\": \"0.1.0b2\"\n + \ },\n \"sha256Digest\": \"dfe97525bb57cb65124c17916db4278f19e281220a5fedbd0d91486cadbb12bc\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.2.0b1/azure_iot_ops-0.2.0b1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.2.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.42.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"protobuf (~=4.25.0)\",\n \"rich + (<14.0,>=13.6)\"\n ]\n }\n + \ ],\n \"summary\": \"The Azure IoT Operations + extension for Azure CLI.\",\n \"version\": \"0.2.0b1\"\n + \ },\n \"sha256Digest\": \"0e3bcc6cf3f2eeb80c96ee0d68eb3bad356837642296bed2c6edf7b9519b8320\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.2.0b2/azure_iot_ops-0.2.0b2-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.2.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.42.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"protobuf (~=4.25.0)\",\n \"rich + (<14.0,>=13.6)\"\n ]\n }\n + \ ],\n \"summary\": \"The Azure IoT Operations + extension for Azure CLI.\",\n \"version\": \"0.2.0b2\"\n + \ },\n \"sha256Digest\": \"eb0907428bfad9e0f974617663c2a73908887e99636ed9ec13954c767f7b741d\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.2.0b4/azure_iot_ops-0.2.0b4-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.2.0b4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"protobuf (~=4.25.0)\",\n \"rich + (<14.0,>=13.6)\"\n ]\n }\n + \ ],\n \"summary\": \"The Azure IoT Operations + extension for Azure CLI.\",\n \"version\": \"0.2.0b4\"\n + \ },\n \"sha256Digest\": \"0c7b77c9b7dd39655ef1dc51d5bb7cc370062318d21bfeb1467ccb2fa2229ab4\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.3.0b1/azure_iot_ops-0.3.0b1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.3.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"protobuf (~=4.25.0)\",\n \"rich + (<14.0,>=13.6)\"\n ]\n }\n + \ ],\n \"summary\": \"The Azure IoT Operations + extension for Azure CLI.\",\n \"version\": \"0.3.0b1\"\n + \ },\n \"sha256Digest\": \"31f2fd60a63f25f05d30288e79b56f051baad4698ef9d61d4bcae432a2924f43\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.3.0b2/azure_iot_ops-0.3.0b2-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.3.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"protobuf (~=4.25.0)\",\n \"rich + (<14.0,>=13.6)\"\n ]\n }\n + \ ],\n \"summary\": \"The Azure IoT Operations + extension for Azure CLI.\",\n \"version\": \"0.3.0b2\"\n + \ },\n \"sha256Digest\": \"1ddce07806ac2b529d4e98e7919aef58907d03174f33c5d96305cbfe590c13b1\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.3.0b3/azure_iot_ops-0.3.0b3-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.3.0b3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"packaging (>=23.2)\",\n \"protobuf + (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": + \"0.3.0b3\"\n },\n \"sha256Digest\": \"ce5afd49b56a2647dd359d67534c86116211c38cbd83d68b73e15765c7b23b1e\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.4.0b1/azure_iot_ops-0.4.0b1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.4.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"packaging (>=23.2)\",\n \"protobuf + (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": + \"0.4.0b1\"\n },\n \"sha256Digest\": \"969d2e85305a58cd711ff7ab43a136c3ff12b7de3c07baa2f49a980dbbca7f44\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.4.0b2/azure_iot_ops-0.4.0b2-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.4.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"packaging (>=23.2)\",\n \"protobuf + (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": + \"0.4.0b2\"\n },\n \"sha256Digest\": \"36898f0ebb07fc8197b62bf9d240f0067e186d306c7c52b8a01b2c4adf91bf90\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.4.0b3/azure_iot_ops-0.4.0b3-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.4.0b3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"packaging (>=23.2)\",\n \"protobuf + (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": + \"0.4.0b3\"\n },\n \"sha256Digest\": \"a5cb90030bf3fe748d7f11285243f9e0c1207e5d409a320bd1f3e0e29f527de5\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.4.0b4/azure_iot_ops-0.4.0b4-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.4.0b4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"packaging (>=23.2)\",\n \"protobuf + (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": + \"0.4.0b4\"\n },\n \"sha256Digest\": \"0439ae5846b317449e427a985f4a9bf8ab91c622766c163af2f717ac024a30f5\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.5.0b1/azure_iot_ops-0.5.0b1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.5.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"packaging (>=23.2)\",\n \"protobuf + (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": + \"0.5.0b1\"\n },\n \"sha256Digest\": \"bae0b60c4a8c39689a164bddf5ffb2bd2da09fc87c9b03c2d22fc9936e10dcf4\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.5.0b2/azure_iot_ops-0.5.0b2-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.5.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"packaging (>=23.2)\",\n \"protobuf + (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": + \"0.5.0b2\"\n },\n \"sha256Digest\": \"3b590acb85b946bc832244c7e6fd85bb19d5aa66dc30c8f72d37c0ea93a3d9b2\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.5.1b1/azure_iot_ops-0.5.1b1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.5.1b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"packaging (>=23.2)\",\n \"protobuf + (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": + \"0.5.1b1\"\n },\n \"sha256Digest\": \"09a63dbd9dc976235fe295eb78083fa6141f52db6dde9c8c25975c23f1f79fe4\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.6.0b1/azure_iot_ops-0.6.0b1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.6.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"packaging (>=23.2)\",\n \"protobuf + (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": + \"0.6.0b1\"\n },\n \"sha256Digest\": \"5740d3db63a76c01059311998840a0886524b8c0174a271272817f90880a6790\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.6.0b2/azure_iot_ops-0.6.0b2-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.6.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"packaging (>=23.2)\",\n \"protobuf + (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": + \"0.6.0b2\"\n },\n \"sha256Digest\": \"ac8614eeab41c9fdd30e4672d558f8ed1c6d585d1ab501afc6e9660928d43616\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.6.0b3/azure_iot_ops-0.6.0b3-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.6.0b3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"packaging (>=23.2)\",\n \"protobuf + (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": + \"0.6.0b3\"\n },\n \"sha256Digest\": \"105527ab18b2d04292cb7c33efbf05258becc5be2dd859441c2703408372462d\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.6.0b4/azure_iot_ops-0.6.0b4-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.6.0b4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<1.18.0,>=1.14.1)\",\n + \ \"kubernetes (<29.0,>=27.2)\",\n \"opentelemetry-proto + (~=1.20.0)\",\n \"packaging (>=23.2)\",\n \"protobuf + (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": + \"0.6.0b4\"\n },\n \"sha256Digest\": \"434c90b6ae2f51f751e5fb868f0fd649a8affd123e049c956b7fb3edf6e79de4\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.7.0b1/azure_iot_ops-0.7.0b1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.7.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<1.18.0,>=1.14.1)\",\n + \ \"kubernetes (<29.0,>=27.2)\",\n \"opentelemetry-proto + (~=1.20.0)\",\n \"packaging (>=23.2)\",\n \"protobuf + (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": + \"0.7.0b1\"\n },\n \"sha256Digest\": \"7d3f834f9e6bfa5b9c666b9d37f657d41256e68d77b9a69fde3a5333c3eb61f6\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.7.0b2/azure_iot_ops-0.7.0b2-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.7.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\",\n \"Programming Language :: Python :: 3.12\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<1.18.0,>=1.14.1)\",\n + \ \"azure-identity<1.18.0,>=1.14.1\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"kubernetes<29.0,>=27.2\",\n + \ \"opentelemetry-proto (~=1.20.0)\",\n \"opentelemetry-proto~=1.20.0\",\n + \ \"packaging (>=23.2)\",\n \"packaging>=23.2\",\n + \ \"protobuf (~=4.25.0)\",\n \"protobuf~=4.25.0\",\n + \ \"rich (<14.0,>=13.6)\",\n \"rich<14.0,>=13.6\"\n + \ ]\n }\n ],\n + \ \"summary\": \"The Azure IoT Operations extension for + Azure CLI.\",\n \"version\": \"0.7.0b2\"\n },\n + \ \"sha256Digest\": \"eeafdbfbbea6d919729ac81510008581ff234117a5301eae9d31237271ea2e4e\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.8.0b1/azure_iot_ops-0.8.0b1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.8.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\",\n \"Programming Language :: Python :: 3.12\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<1.18.0,>=1.14.1)\",\n + \ \"azure-identity<1.18.0,>=1.14.1\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"kubernetes<29.0,>=27.2\",\n + \ \"opentelemetry-proto (~=1.20.0)\",\n \"opentelemetry-proto~=1.20.0\",\n + \ \"packaging (>=23.2)\",\n \"packaging>=23.2\",\n + \ \"protobuf (~=4.25.0)\",\n \"protobuf~=4.25.0\",\n + \ \"rich (<14.0,>=13.6)\",\n \"rich<14.0,>=13.6\"\n + \ ]\n }\n ],\n + \ \"summary\": \"The Azure IoT Operations extension for + Azure CLI.\",\n \"version\": \"0.8.0b1\"\n },\n + \ \"sha256Digest\": \"eae168fc237816f73610b834a67f0fe92bcbcacb693ac63904455e90aca27f40\"\n + \ }\n ],\n \"azure-sphere\": [\n {\n \"downloadUrl\": + \"https://software-static.download.prss.microsoft.com/dbazure/888969d5-f34g-4e03-ac9d-1f9786c66751/azure_sphere-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_sphere-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"description_content_type\": + \"text/markdown\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"Microsoft Corporation \",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/azure-sphere\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-sphere\",\n \"requires_python\": \"<4,>=3.6\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-core (>=1.24.0)\",\n \"azure-core>=1.24.0\",\n + \ \"azure-mgmt-core (>=1.3.0)\",\n \"azure-mgmt-core>=1.3.0\",\n + \ \"azuresphere-device-api (>=1.1.0)\",\n \"azuresphere-device-api>=1.1.0\",\n + \ \"azuresphere-imagemetadata\",\n \"azuresphere-imagemetadata\",\n + \ \"semantic-version (==2.8.5)\",\n \"semantic_version==2.8.5\"\n + \ ]\n }\n ],\n + \ \"summary\": \"The Azure Sphere extension for Azure CLI.\",\n + \ \"version\": \"1.0.1\"\n },\n \"sha256Digest\": + \"9fcab107f8856e79943388501d148379ab782a1ffba1f997f7db3e667a7d5172\"\n },\n + \ {\n \"downloadUrl\": \"https://software-static.download.prss.microsoft.com/dbazure/888969d5-f34g-4e03-ac9d-1f9786c66749/azure_sphere-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_sphere-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"description_content_type\": + \"text/markdown\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"Microsoft Corporation \",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/azure-sphere\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-sphere\",\n \"requires_python\": \"<4,>=3.6\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-core (>=1.24.0)\",\n \"azure-core>=1.24.0\",\n + \ \"azure-mgmt-core (>=1.3.0)\",\n \"azure-mgmt-core>=1.3.0\",\n + \ \"azuresphere-device-api (>=1.1.0)\",\n \"azuresphere-device-api>=1.1.0\",\n + \ \"azuresphere-imagemetadata\",\n \"azuresphere-imagemetadata\",\n + \ \"semantic-version (==2.8.5)\",\n \"semantic_version==2.8.5\"\n + \ ]\n }\n ],\n + \ \"summary\": \"The Azure Sphere extension for Azure CLI.\",\n + \ \"version\": \"1.0.0\"\n },\n \"sha256Digest\": + \"4baf489caaeada3feb08e5d1a3f890f2ee0dd4072a28a04c1eab7301b64293c5\"\n },\n + \ {\n \"downloadUrl\": \"https://software-static.download.prss.microsoft.com/dbazure/988969d5-f34g-4e03-ac9d-1f9786c66749/azure_sphere-0.1.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_sphere-0.1.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azsppgsup@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/azure-sphere\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-sphere\",\n \"requires_python\": + \">=3.6.0\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-core + (>=1.24.0)\",\n \"azure-mgmt-core (>=1.3.0)\",\n + \ \"azuresphere-device-api (>=1.1.0)\",\n \"semantic-version + (==2.8.5)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Azure + Sphere Extension\",\n \"version\": \"0.1.4\"\n },\n + \ \"sha256Digest\": \"8ba8a4e9b1020ebe62db1c322cc4881793dde7f04b9c431772aac5a4cb214f35\"\n + \ }\n ],\n \"azurelargeinstance\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azurelargeinstance-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"azurelargeinstance-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azurelargeinstance\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azurelargeinstance\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Azurelargeinstance Extension.\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"a6e38c623cf14a9528df9f28aa98d9642c1e73c0a815becdce842e3a2f0f49ac\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azurelargeinstance-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"azurelargeinstance-1.0.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azurelargeinstance\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azurelargeinstance\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Azurelargeinstance Extension.\",\n \"version\": + \"1.0.0b2\"\n },\n \"sha256Digest\": \"6948ac3306269ea6c8ff6d32d5673989dfd4dfa0a4e4c5d6d3991b364d5dc628\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azurelargeinstance-1.0.0b3-py3-none-any.whl\",\n + \ \"filename\": \"azurelargeinstance-1.0.0b3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azurelargeinstance\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azurelargeinstance\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Azurelargeinstance Extension.\",\n \"version\": + \"1.0.0b3\"\n },\n \"sha256Digest\": \"093a2fa900e3df53f8bf15b335156058333efe0eff9584a11db4bac0bccc7b1d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azurelargeinstance-1.0.0b4-py3-none-any.whl\",\n + \ \"filename\": \"azurelargeinstance-1.0.0b4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azurelargeinstance\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azurelargeinstance\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Azurelargeinstance Extension.\",\n \"version\": + \"1.0.0b4\"\n },\n \"sha256Digest\": \"6fee478bd919922a0532573fdea3b5422925d374ba6649ea015d4d33941e819a\"\n + \ }\n ],\n \"azurestackhci\": [\n {\n \"downloadUrl\": + \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"azurestackhci-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"project_urls\": {\n \"Home\": + \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azurestackhci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"27fba7f0a2c2fd97e4cc0e815a7de4ec9493e7ef99816d577da5046588f7977a\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"azurestackhci-0.2.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azurestackhci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCI Extension\",\n \"version\": \"0.2.1\"\n + \ },\n \"sha256Digest\": \"3d6220cffd5b45383c16b9cdd43393e1d4e07bebf3b2bbca9eabed21049c197c\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.2-py3-none-any.whl\",\n + \ \"filename\": \"azurestackhci-0.2.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azurestackhci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCI Extension\",\n \"version\": \"0.2.2\"\n + \ },\n \"sha256Digest\": \"2de905d3adc714745ee92bf81c237ea3dd61cb4a6e87d2a840f4047aba352a73\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.3-py3-none-any.whl\",\n + \ \"filename\": \"azurestackhci-0.2.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azurestackhci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCI Extension\",\n \"version\": \"0.2.3\"\n + \ },\n \"sha256Digest\": \"0796a045fb8d5de1c0b12375459efd45628aec4e04419c679860aba1d2b4d361\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.4-py3-none-any.whl\",\n + \ \"filename\": \"azurestackhci-0.2.4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azurestackhci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCI Extension\",\n \"version\": \"0.2.4\"\n + \ },\n \"sha256Digest\": \"6e855e4a3f3eee635bc73c6f2b761a37ef557f0f0c6898361af3fd230c03a92f\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.5-py3-none-any.whl\",\n + \ \"filename\": \"azurestackhci-0.2.5-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azurestackhci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCI Extension\",\n \"version\": \"0.2.5\"\n + \ },\n \"sha256Digest\": \"ce0c83fc04b79d279ef479fa7a6ae41786b0011d8343fe340567daacb357676e\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.6-py3-none-any.whl\",\n + \ \"filename\": \"azurestackhci-0.2.6-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azurestackhci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCI Extension\",\n \"version\": \"0.2.6\"\n + \ },\n \"sha256Digest\": \"0a0e897028ecce7ab26b55a4971177d8a7df23f15c772bae2000447380b3d1e2\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.9-py3-none-any.whl\",\n + \ \"filename\": \"azurestackhci-0.2.9-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/azurestackhci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azurestackhci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCI Extension\",\n \"version\": \"0.2.9\"\n + \ },\n \"sha256Digest\": \"2557b2fe3fa2f951a2794ba967555ba54c2e93eb75538152f21ab2fb568fef16\"\n + \ }\n ],\n \"baremetal-infrastructure\": [\n {\n + \ \"downloadUrl\": \"https://github.com/Azure/azure-baremetalinfrastructure-cli-extension/releases/download/1.0.0/baremetal_infrastructure-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"baremetal_infrastructure-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.12.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-baremetalinfrastructure-cli-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"baremetal-infrastructure\",\n \"summary\": \"Additional + commands for working with BareMetal instances.\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"9e0bd5e66debbb9a4a810dad44f710eba43f0249b2f8a630539b68e21a849d6f\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-baremetalinfrastructure-cli-extension/releases/download/2.0.0/baremetal_infrastructure-2.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"baremetal_infrastructure-2.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.53.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-baremetalinfrastructure-cli-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"baremetal-infrastructure\",\n \"summary\": \"Additional + commands for working with BareMetal instances.\",\n \"version\": + \"2.0.0\"\n },\n \"sha256Digest\": \"158c4e81eb6d773f523e76813f4cf6958fb0c53d08533c3dccc81edd73e593a0\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-baremetalinfrastructure-cli-extension/releases/download/2.0.1/baremetal_infrastructure-2.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"baremetal_infrastructure-2.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.10\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-baremetalinfrastructure-cli-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"license_file\": \"LICENSE\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"baremetal-infrastructure\",\n \"summary\": + \"Additional commands for working with BareMetal instances.\",\n \"version\": + \"2.0.1\"\n },\n \"sha256Digest\": \"ea127d64603c8a45774cdf9aa80c4c8b5839a42719971b296beb96105fe5ef2d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/baremetal_infrastructure-3.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"baremetal_infrastructure-3.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/baremetal-infrastructure\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"baremetal-infrastructure\",\n \"summary\": \"Microsoft + Azure Command-Line Tools BaremetalInfrastructure Extension.\",\n \"version\": + \"3.0.0b1\"\n },\n \"sha256Digest\": \"83ff3e4540f522a5f3578a923155715160e90a15a8d919a2e5569c08f1295a2f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/baremetal_infrastructure-3.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"baremetal_infrastructure-3.0.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/baremetal-infrastructure\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"baremetal-infrastructure\",\n \"summary\": \"Microsoft + Azure Command-Line Tools BaremetalInfrastructure Extension.\",\n \"version\": + \"3.0.0b2\"\n },\n \"sha256Digest\": \"0e5843e295a27058262e945febc43179ce173ac27ebcfe4456b466b7acb9c220\"\n + \ }\n ],\n \"bastion\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"bastion-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"8a3ab4753d4c5be5306ff7102a962d9a3c6e867e0cfc50d628823af3c4cb4f31\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"bastion-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"97cfe1c32304e23317d06afa627718759b08fa4e7a653fff54a4bd03cfd28b22\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"bastion-0.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"0.2.1\"\n + \ },\n \"sha256Digest\": \"5eae321c2da7598d58e2f7b3c7ce9c2ceaa478ddc677fcc2f2cbaf9db5d9990b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.2-py3-none-any.whl\",\n + \ \"filename\": \"bastion-0.2.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"0.2.2\"\n + \ },\n \"sha256Digest\": \"46939533454fbc427b136c9108387598225971f5f8c3a96ea25e8892ee74ba46\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.3-py3-none-any.whl\",\n + \ \"filename\": \"bastion-0.2.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"0.2.3\"\n + \ },\n \"sha256Digest\": \"fa0750de72dd8645c6fc64d38fb271d8e8c928b101a097a709df6f08932d27dc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.4-py3-none-any.whl\",\n + \ \"filename\": \"bastion-0.2.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"0.2.4\"\n + \ },\n \"sha256Digest\": \"f765a3443cc8d37da6efe4b6e14544916a0367a86a74b4c557ce3a52866d87b3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.5-py3-none-any.whl\",\n + \ \"filename\": \"bastion-0.2.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"0.2.5\"\n + \ },\n \"sha256Digest\": \"49f509734778db4badf14dadee8a1d59b66f79776fc2c4848026faf5abf1193c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.6-py3-none-any.whl\",\n + \ \"filename\": \"bastion-0.2.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"0.2.6\"\n + \ },\n \"sha256Digest\": \"16e347a701924127a85262587a68b220e0aa9b1581f25066e82c9cabdc4c5789\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.7-py3-none-any.whl\",\n + \ \"filename\": \"bastion-0.2.7-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"0.2.7\"\n + \ },\n \"sha256Digest\": \"f587a0bc6ac7a4f72d24cf2fba613bd555fa505149d7e1cf65eacb435de33cbf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"bastion-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"0.3.0\"\n + \ },\n \"sha256Digest\": \"c20d8e423acef3b6728c9abdfe90ad4a7020f2d122068983d7b59b9e3fef84c3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"bastion-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"39b1468f0741f640294e2b9f258bf9fd46541e061b913003c70756f5298fed42\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"bastion-1.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"1.0.1\"\n + \ },\n \"sha256Digest\": \"dbeef63e7b5c45028b7362709f9b41b250fe8d611b21baa00b8839d86848dc3e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.0.2-py3-none-any.whl\",\n + \ \"filename\": \"bastion-1.0.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"1.0.2\"\n + \ },\n \"sha256Digest\": \"1637b37374e8956d555ee89e005ceb952aed4e754b93a8ec887a4f90ce4e36f8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"bastion-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"d90bc404d2f9d22435a2bd34bd1fd6094d71d6f1719763c72ee6e4835ec8a99d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.1.1-py3-none-any.whl\",\n + \ \"filename\": \"bastion-1.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"1.1.1\"\n + \ },\n \"sha256Digest\": \"0e6dd3bc5df481e083db0767e1eb1c5dbbb70d111524d5d692fbec2d278986ca\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"bastion-1.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.62.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"1.2.0\"\n + \ },\n \"sha256Digest\": \"1de9f4df44620d477c28b099408bd81b68fafc8b7927058cb9de10099eee5efd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.3.0-py3-none-any.whl\",\n + \ \"filename\": \"bastion-1.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.62.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"1.3.0\"\n + \ },\n \"sha256Digest\": \"151ab25d4dcde10b46c4693cefdaf1d0d5841e15cfe3ec64c089aaaf55e6c8c0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.3.1-py3-none-any.whl\",\n + \ \"filename\": \"bastion-1.3.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.62.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"1.3.1\"\n + \ },\n \"sha256Digest\": \"0ccaa40674fc329fe9f9257f869c319c64d6c89c028664a6ff534ebaee1dc5e9\"\n + \ }\n ],\n \"billing-benefits\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/billing_benefits-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"billing_benefits-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/billing-benefits\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"billing-benefits\",\n \"summary\": \"Microsoft Azure + Command-Line Tools BillingBenefits Extension.\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"f71250d1c26690cc0e175cd5c9bcd59e76c7b701bb3a47c8273e4cf8bcca878e\"\n + \ }\n ],\n \"blueprint\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/blueprint-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"blueprint-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"blueprint\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Blueprint Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"98c1874110e2c77c62cf0d180133ea0b29ed08a86189ee292b909369597e694b\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/blueprint-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"blueprint-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"blueprint\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Blueprint Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"4508b6143f69e6ac388ad37b3e3af82f49c9b5625e12d341963cc2faf02e368f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/blueprint-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"blueprint-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"blueprint\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Blueprint Extension\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"fcbbe61db268b9b5452b0d9055c5fc8b725a63193290957c2681de5fe2e6f1ff\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/blueprint-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"blueprint-0.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/blueprint\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"blueprint\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Blueprint Extension\",\n \"version\": \"0.2.1\"\n + \ },\n \"sha256Digest\": \"120bd04db8b31bbc5631ce086739763cca3144c2e314b8e1347f1d633e894a09\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/blueprint-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"blueprint-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/blueprint\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"blueprint\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Blueprint Extension\",\n \"version\": \"0.3.0\"\n + \ },\n \"sha256Digest\": \"843a836410e80a3a72a36ea90c72d9a1358b787c77afae20d2ae71b976c1c5a4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/blueprint-0.3.1-py3-none-any.whl\",\n + \ \"filename\": \"blueprint-0.3.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/blueprint\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"blueprint\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Blueprint Extension\",\n \"version\": \"0.3.1\"\n + \ },\n \"sha256Digest\": \"ebac321b7ef9811d82a166da7ec48b2d70f234aec8d3fd597f471ba752a5d253\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/blueprint-0.3.2-py3-none-any.whl\",\n + \ \"filename\": \"blueprint-0.3.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.50.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/blueprint\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"blueprint\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Blueprint Extension\",\n \"version\": \"0.3.2\"\n + \ },\n \"sha256Digest\": \"58d3835446dd93e585b0f6b520a2db6551b8a927e35e25da4747d4cf8a4c009b\"\n + \ }\n ],\n \"change-analysis\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/change_analysis-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"change_analysis-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/change-analysis\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"change-analysis\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ChangeAnalysis Extension.\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"49f1761a1b1ad29169af2ecd5793e10ddec797ebb2610e7c70e1b1ab2b75126a\"\n + \ }\n ],\n \"cli-translator\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/cli_translator-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"cli_translator-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/cli-translator\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cli-translator\",\n \"summary\": \"Translate ARM template + to executable Azure CLI scripts.\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"8a4d19ed89cd63e1cc461715b7b0a1a989d2b480adc1b3b4f5747eef0327b85b\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/cli_translator-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"cli_translator-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/cli-translator\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cli-translator\",\n \"summary\": \"Translate ARM template + to executable Azure CLI scripts.\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"ee07cbcde217d2b1ab226ef5aeea8e44510b704fb5e3976638dcf2f978f722e4\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/cli_translator-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"cli_translator-0.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/cli-translator\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cli-translator\",\n \"summary\": \"Translate ARM template + to executable Azure CLI scripts.\",\n \"version\": \"0.3.0\"\n + \ },\n \"sha256Digest\": \"9ea6162d37fc3390be4dce64cb05c5c588070104f3e92a701ab475473565a8a9\"\n + \ }\n ],\n \"cloud-service\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/cloud_service-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"cloud_service-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/cloudservice\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"cloud-service\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-compute (~=19.0.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools ComputeManagementClient Extension\",\n + \ \"version\": \"0.1.0\"\n },\n \"sha256Digest\": + \"22c640991a5e98e42ddcb4303813cd63b75d4b3d392ad9eab955a5af1b87c45b\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cloud_service-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"cloud_service-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/cloudservice\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"cloud-service\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-compute (~=20.0.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools ComputeManagementClient Extension\",\n + \ \"version\": \"0.2.0\"\n },\n \"sha256Digest\": + \"ee7ca3a5eaa801ceea9173f2ff0a429600bff9e9339d504071c0283b56facec4\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cloud_service-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"cloud_service-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cloudservice\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"cloud-service\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-compute (~=30.4.0)\",\n \"azure-mgmt-compute~=30.4.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools ComputeManagementClient + Extension\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"4e2ee7e468b23bff594e99059b8b279485f28a2dbe9a99f82fdf9f48cce82f13\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cloud_service-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"cloud_service-1.0.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cloudservice\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"cloud-service\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-compute (~=33.0.0)\",\n \"azure-mgmt-compute~=33.0.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools ComputeManagementClient + Extension\",\n \"version\": \"1.0.1\"\n },\n + \ \"sha256Digest\": \"f6b2d80a7eab3babd3185741b467e01d0c1c78a6ed7ffb78f031b875007373e4\"\n + \ }\n ],\n \"command-change\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/command_change-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"command_change-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/command-change\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"command-change\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-diff-tool\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommandChange Extension.\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"e7834850f0c99431180f3ebbfab00bd5ce8bda1696d9de556175e6b7466b1f44\"\n + \ }\n ],\n \"communication\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/communication-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"communication-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/communication\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"communication\",\n \"summary\": \"Microsoft Azure Command-Line + Tools CommunicationServiceManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"a16e8262b53791aad9e74a4f3d4804a5bafbe415df3c7651776e98b787bf6226\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/communication\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"communication\",\n \"summary\": \"Microsoft Azure Command-Line + Tools CommunicationServiceManagementClient Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"2ee3d4c870c0c0c0dd97fbe6510958ac8c23dca2b4814b4a0a9ea665cd17e723\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-communication-identity\",\n \"azure-communication-phonenumbers\",\n + \ \"azure-communication-sms\",\n \"azure-core\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.1.0\"\n },\n + \ \"sha256Digest\": \"e4ac2008217ade46ca2504b31aa79ab11c1c892964fd06df911e976be6cf3dae\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.1.1-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-communication-identity\",\n \"azure-communication-phonenumbers\",\n + \ \"azure-communication-sms\",\n \"azure-core\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.1.1\"\n },\n + \ \"sha256Digest\": \"f5f50e27f9066772fd55c2c6bb9c4100964ef7b2ad38942cdf900cb856431f34\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.1.2-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.1.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-communication-identity\",\n \"azure-communication-phonenumbers\",\n + \ \"azure-communication-sms\",\n \"azure-core\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.1.2\"\n },\n + \ \"sha256Digest\": \"95baaac48941cf28d0bb55e6f0137815d815e422d94aaf8c09851f17134be3fd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat\",\n + \ \"azure-communication-identity (>=1.1.0)\",\n + \ \"azure-communication-phonenumbers\",\n \"azure-communication-sms\",\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.2.0\"\n },\n + \ \"sha256Digest\": \"5ddf668ec26069f3f543f473c693f17dc09c0eef049649031d685084dc74dc95\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.2.1-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.2.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat\",\n + \ \"azure-communication-identity (>=1.1.0)\",\n + \ \"azure-communication-phonenumbers\",\n \"azure-communication-sms\",\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.2.1\"\n },\n + \ \"sha256Digest\": \"25515098d1975677ceae20935e8ef0ae2ee8cbaba5894c9d7267be6835dd18f7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.2.2-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.2.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat\",\n + \ \"azure-communication-identity (>=1.1.0)\",\n + \ \"azure-communication-phonenumbers\",\n \"azure-communication-sms\",\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.2.2\"\n },\n + \ \"sha256Digest\": \"eba4d9b3ff0fff5b6c815577951a60968c0062e9b333d4f8594d39036002ceb0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.3.0-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat\",\n + \ \"azure-communication-identity (>=1.1.0)\",\n + \ \"azure-communication-phonenumbers\",\n \"azure-communication-sms\",\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.3.0\"\n },\n + \ \"sha256Digest\": \"6ba09eb74e658d53567335568dbda2f58851504022ca11cd1db6f2cc84dfb4e1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.4.1-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.4.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.40.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat\",\n + \ \"azure-communication-identity (>=1.2.0)\",\n + \ \"azure-communication-phonenumbers\",\n \"azure-communication-rooms\",\n + \ \"azure-communication-sms\",\n \"azure-core\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.4.1\"\n },\n + \ \"sha256Digest\": \"f3b8d6812151f45bd12be1f7e567a857ed13e822f5471965449e1212853481d1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.5.0-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.5.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.40.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat\",\n + \ \"azure-communication-email (>=1.0.0b1)\",\n + \ \"azure-communication-identity (>=1.2.0)\",\n + \ \"azure-communication-phonenumbers\",\n \"azure-communication-rooms\",\n + \ \"azure-communication-sms\",\n \"azure-core\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.5.0\"\n },\n + \ \"sha256Digest\": \"74e52d38fe0e14c66992c44f265fae7a2cf89ee64a33e402c217defbd1f2e28c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.5.1-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.5.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.40.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat\",\n + \ \"azure-communication-email (>=1.0.0b1)\",\n + \ \"azure-communication-identity (>=1.2.0)\",\n + \ \"azure-communication-phonenumbers\",\n \"azure-communication-rooms\",\n + \ \"azure-communication-sms\",\n \"azure-core\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.5.1\"\n },\n + \ \"sha256Digest\": \"04aadad0932fb25c5491396c367c10d948930aa8c65398c9b5ba0a5bdfa41ca4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.5.2-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.5.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.40.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat\",\n + \ \"azure-communication-email (==1.0.0b1)\",\n + \ \"azure-communication-identity (>=1.2.0)\",\n + \ \"azure-communication-phonenumbers\",\n \"azure-communication-rooms\",\n + \ \"azure-communication-sms\",\n \"azure-core\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.5.2\"\n },\n + \ \"sha256Digest\": \"aaff9348766224c8be86e46cf848ba34ef4691cd7f3ca27ba3052132efdaa16c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.6.0-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.6.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.40.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat\",\n + \ \"azure-communication-email (==1.0.0b1)\",\n + \ \"azure-communication-identity (>=1.2.0)\",\n + \ \"azure-communication-phonenumbers\",\n \"azure-communication-rooms + (>=1.0.0b3)\",\n \"azure-communication-sms\",\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.6.0\"\n },\n + \ \"sha256Digest\": \"45bbb303f0b1f845d9c13fff4f4ae6240f020b9bc32da73cd37fc896cd4aa9f0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.6.1-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.6.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.40.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat\",\n + \ \"azure-communication-email (==1.0.0b1)\",\n + \ \"azure-communication-identity (>=1.2.0)\",\n + \ \"azure-communication-phonenumbers\",\n \"azure-communication-rooms + (>=1.0.0)\",\n \"azure-communication-sms\",\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.6.1\"\n },\n + \ \"sha256Digest\": \"0152e4a074efd873bd2c1b3d623eddd244773bcc521122234e3d03ce70c5da33\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.7.0b1-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.7.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat\",\n + \ \"azure-communication-email (==1.0.0b1)\",\n + \ \"azure-communication-identity (>=1.2.0)\",\n + \ \"azure-communication-phonenumbers\",\n \"azure-communication-rooms + (>=1.0.0)\",\n \"azure-communication-sms\",\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.7.0b1\"\n },\n + \ \"sha256Digest\": \"7774047b33e8b093a89507e8b54ae08f979fb160fac80088b67aa10a834f8372\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.7.1b1-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.7.1b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat\",\n + \ \"azure-communication-email (==1.0.0b1)\",\n + \ \"azure-communication-identity (>=1.2.0)\",\n + \ \"azure-communication-phonenumbers\",\n \"azure-communication-rooms + (>=1.0.0)\",\n \"azure-communication-sms\",\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.7.1b1\"\n },\n + \ \"sha256Digest\": \"6066d7d40bedea969c9e4e11f1848b3da8dc4d9a23a849b267e66574d31f6612\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.7.2b1-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.7.2b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat\",\n + \ \"azure-communication-email (>=1.0.0)\",\n + \ \"azure-communication-identity (>=1.2.0)\",\n + \ \"azure-communication-phonenumbers\",\n \"azure-communication-rooms + (>=1.0.0)\",\n \"azure-communication-sms\",\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.7.2b1\"\n },\n + \ \"sha256Digest\": \"68e4085c6448b9ae9a964583c580ceb0a0f6fcd53cd007d17026c01a6628c258\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.8.0b1-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.8.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat\",\n + \ \"azure-communication-chat\",\n \"azure-communication-email + (>=1.0.0)\",\n \"azure-communication-email>=1.0.0\",\n + \ \"azure-communication-identity (>=1.2.0)\",\n + \ \"azure-communication-identity>=1.2.0\",\n + \ \"azure-communication-phonenumbers\",\n \"azure-communication-phonenumbers\",\n + \ \"azure-communication-rooms (>=1.1.0b1)\",\n + \ \"azure-communication-rooms>=1.1.0b1\",\n + \ \"azure-communication-sms\",\n \"azure-communication-sms\",\n + \ \"azure-core\",\n \"azure-core\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.8.0b1\"\n },\n + \ \"sha256Digest\": \"abb0ef12397d598b82cb08493b3ffa656aa94fa1e172db43b07d013ecece1e39\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.8.0b2-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.8.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.55.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat\",\n + \ \"azure-communication-chat\",\n \"azure-communication-email + (>=1.0.0)\",\n \"azure-communication-email>=1.0.0\",\n + \ \"azure-communication-identity (>=1.2.0)\",\n + \ \"azure-communication-identity>=1.2.0\",\n + \ \"azure-communication-phonenumbers\",\n \"azure-communication-phonenumbers\",\n + \ \"azure-communication-rooms (>=1.1.0b1)\",\n + \ \"azure-communication-rooms>=1.1.0b1\",\n + \ \"azure-communication-sms\",\n \"azure-communication-sms\",\n + \ \"azure-core\",\n \"azure-core\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.8.0b2\"\n },\n + \ \"sha256Digest\": \"55651fe9d1f21cc8d3b84b5c71b7cb0f6ab81296c44fac2c5942e42939805817\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.9.0-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.9.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat\",\n + \ \"azure-communication-chat\",\n \"azure-communication-email + (>=1.0.0)\",\n \"azure-communication-email>=1.0.0\",\n + \ \"azure-communication-identity (>=1.2.0)\",\n + \ \"azure-communication-identity>=1.2.0\",\n + \ \"azure-communication-phonenumbers\",\n \"azure-communication-phonenumbers\",\n + \ \"azure-communication-rooms (>=1.1.0b1)\",\n + \ \"azure-communication-rooms>=1.1.0b1\",\n + \ \"azure-communication-sms\",\n \"azure-communication-sms\",\n + \ \"azure-core\",\n \"azure-core\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.9.0\"\n },\n + \ \"sha256Digest\": \"4aa39f0877ca36f28cd3106e3e774212cce1b82441ad0e7d3aba952cd4520e5b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.9.1-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.9.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat\",\n + \ \"azure-communication-chat\",\n \"azure-communication-email + (>=1.0.0)\",\n \"azure-communication-email>=1.0.0\",\n + \ \"azure-communication-identity (>=1.2.0)\",\n + \ \"azure-communication-identity>=1.2.0\",\n + \ \"azure-communication-phonenumbers\",\n \"azure-communication-phonenumbers\",\n + \ \"azure-communication-rooms (>=1.1.0b1)\",\n + \ \"azure-communication-rooms>=1.1.0b1\",\n + \ \"azure-communication-sms\",\n \"azure-communication-sms\",\n + \ \"azure-core\",\n \"azure-core\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.9.1\"\n },\n + \ \"sha256Digest\": \"4a84fd19c598286dc1185e7c7b783fccef64f122bb13743a0483f026bf98a036\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.9.2-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.9.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.59.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat + (>=1.3.0)\",\n \"azure-communication-chat>=1.3.0\",\n + \ \"azure-communication-email (>=1.0.0)\",\n + \ \"azure-communication-email>=1.0.0\",\n \"azure-communication-identity + (>=1.2.0)\",\n \"azure-communication-identity>=1.2.0\",\n + \ \"azure-communication-phonenumbers (>=1.2.0b3)\",\n + \ \"azure-communication-phonenumbers>=1.2.0b3\",\n + \ \"azure-communication-rooms (>=1.1.0)\",\n + \ \"azure-communication-rooms>=1.1.0\",\n \"azure-communication-sms\",\n + \ \"azure-communication-sms\",\n \"azure-core\",\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.9.2\"\n },\n + \ \"sha256Digest\": \"7d41e4841b3706e1f7145c1e496b6a26e269792fff400b225c695e6593f3376d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.9.3-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.9.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.59.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat + (>=1.3.0)\",\n \"azure-communication-chat>=1.3.0\",\n + \ \"azure-communication-email (>=1.0.0)\",\n + \ \"azure-communication-email>=1.0.0\",\n \"azure-communication-identity + (>=1.2.0)\",\n \"azure-communication-identity>=1.2.0\",\n + \ \"azure-communication-phonenumbers (>=1.2.0b3)\",\n + \ \"azure-communication-phonenumbers>=1.2.0b3\",\n + \ \"azure-communication-rooms (>=1.1.0)\",\n + \ \"azure-communication-rooms>=1.1.0\",\n \"azure-communication-sms\",\n + \ \"azure-communication-sms\",\n \"azure-core\",\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.9.3\"\n },\n + \ \"sha256Digest\": \"44cd8bee4797ccb20bf522e8a98bc5fc88ad326aabd10ac62d789738b672c92f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.10.0-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.10.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.59.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat + (>=1.3.0)\",\n \"azure-communication-chat>=1.3.0\",\n + \ \"azure-communication-email (>=1.0.0)\",\n + \ \"azure-communication-email>=1.0.0\",\n \"azure-communication-identity + (>=1.2.0)\",\n \"azure-communication-identity>=1.2.0\",\n + \ \"azure-communication-phonenumbers (>=1.2.0b3)\",\n + \ \"azure-communication-phonenumbers>=1.2.0b3\",\n + \ \"azure-communication-rooms (>=1.1.0)\",\n + \ \"azure-communication-rooms>=1.1.0\",\n \"azure-communication-sms\",\n + \ \"azure-communication-sms\",\n \"azure-core\",\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.10.0\"\n },\n + \ \"sha256Digest\": \"668659d11dde720fd2aff0da6044994a3889525b63c35abea4db89cd4ff27473\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.11.0-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.11.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.59.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat + (>=1.3.0)\",\n \"azure-communication-chat>=1.3.0\",\n + \ \"azure-communication-email (>=1.0.0)\",\n + \ \"azure-communication-email>=1.0.0\",\n \"azure-communication-identity + (>=1.2.0)\",\n \"azure-communication-identity>=1.2.0\",\n + \ \"azure-communication-phonenumbers (>=1.2.0b3)\",\n + \ \"azure-communication-phonenumbers>=1.2.0b3\",\n + \ \"azure-communication-rooms (>=1.1.0)\",\n + \ \"azure-communication-rooms>=1.1.0\",\n \"azure-communication-sms\",\n + \ \"azure-communication-sms\",\n \"azure-core\",\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.11.0\"\n },\n + \ \"sha256Digest\": \"4722d69fc2e283cf3c82f6a80d99e08407f5ce9dcc52b9ac26639ce4a956a81a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.11.1-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.11.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.59.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat + (>=1.3.0)\",\n \"azure-communication-chat>=1.3.0\",\n + \ \"azure-communication-email (>=1.0.0)\",\n + \ \"azure-communication-email>=1.0.0\",\n \"azure-communication-identity + (>=1.2.0)\",\n \"azure-communication-identity>=1.2.0\",\n + \ \"azure-communication-phonenumbers (>=1.2.0b3)\",\n + \ \"azure-communication-phonenumbers>=1.2.0b3\",\n + \ \"azure-communication-rooms (>=1.1.0)\",\n + \ \"azure-communication-rooms>=1.1.0\",\n \"azure-communication-sms\",\n + \ \"azure-communication-sms\",\n \"azure-core\",\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.11.1\"\n },\n + \ \"sha256Digest\": \"c78409eff0310ee51cefc0c8aa2a13392451d44fc953e42e7e266bbf21042cf4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.11.2-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.11.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.59.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat + (>=1.3.0)\",\n \"azure-communication-chat>=1.3.0\",\n + \ \"azure-communication-email (>=1.0.0)\",\n + \ \"azure-communication-email>=1.0.0\",\n \"azure-communication-identity + (>=1.2.0)\",\n \"azure-communication-identity>=1.2.0\",\n + \ \"azure-communication-phonenumbers (>=1.2.0b3)\",\n + \ \"azure-communication-phonenumbers>=1.2.0b3\",\n + \ \"azure-communication-rooms (>=1.1.0)\",\n + \ \"azure-communication-rooms>=1.1.0\",\n \"azure-communication-sms\",\n + \ \"azure-communication-sms\",\n \"azure-core\",\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.11.2\"\n },\n + \ \"sha256Digest\": \"236b36928042544e660ec751e06c079109959eddfae6d4083837841a90d7f2c0\"\n + \ }\n ],\n \"compute-diagnostic-rp\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/compute_diagnostic_rp-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"compute_diagnostic_rp-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/compute-diagnostic-rp\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"compute-diagnostic-rp\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ComputeDiagnosticRp Extension.\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"810e93ce00c7d03df6da9a0faf57b966fb6da582311f9cae74b2b7e1e3c41423\"\n + \ }\n ],\n \"confcom\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.2.10-py3-none-any.whl\",\n + \ \"filename\": \"confcom-0.2.10-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.26.2\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"acccli@microsoft.com\",\n \"name\": \"Microsoft + Corporation\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"deepdiff\",\n \"docker\",\n + \ \"tqdm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Confidential Container Security Policy + Generator Extension\",\n \"version\": \"0.2.10\"\n },\n + \ \"sha256Digest\": \"c464da586646d3616fe501de68c0ada6c56448532d541bc5386d0a60f7719286\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.2.11-py3-none-any.whl\",\n + \ \"filename\": \"confcom-0.2.11-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.26.2\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"acccli@microsoft.com\",\n \"name\": \"Microsoft + Corporation\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"deepdiff\",\n \"docker\",\n + \ \"tqdm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Confidential Container Security Policy + Generator Extension\",\n \"version\": \"0.2.11\"\n },\n + \ \"sha256Digest\": \"a2e9914df505a322f66bcc326baff6cd137296a208ebbd68ce90d4421023de06\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.2.12-py3-none-any.whl\",\n + \ \"filename\": \"confcom-0.2.12-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.26.2\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"acccli@microsoft.com\",\n \"name\": \"Microsoft + Corporation\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"deepdiff\",\n \"docker\",\n + \ \"tqdm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Confidential Container Security Policy + Generator Extension\",\n \"version\": \"0.2.12\"\n },\n + \ \"sha256Digest\": \"1273f6b51c43b4682ce93d7ca35ca33e26efe586a0074ba3a9f426bd54b583ae\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.2.13-py3-none-any.whl\",\n + \ \"filename\": \"confcom-0.2.13-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.26.2\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"acccli@microsoft.com\",\n \"name\": \"Microsoft + Corporation\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"deepdiff\",\n \"docker\",\n + \ \"tqdm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Confidential Container Security Policy + Generator Extension\",\n \"version\": \"0.2.13\"\n },\n + \ \"sha256Digest\": \"4c2738eb4082df58d9fe0b8763943be398975478806c12d42e58624806358f28\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.2.15-py3-none-any.whl\",\n + \ \"filename\": \"confcom-0.2.15-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.26.2\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"acccli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"deepdiff\",\n \"docker\",\n + \ \"tqdm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Confidential Container Security Policy + Generator Extension\",\n \"version\": \"0.2.15\"\n },\n + \ \"sha256Digest\": \"f84e1caa67294ca62969b95655164db492a57d89b19cc2f896d9239124679a89\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.2.16-py3-none-any.whl\",\n + \ \"filename\": \"confcom-0.2.16-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.26.2\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"acccli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"deepdiff (==6.3.0)\",\n \"deepdiff==6.3.0\",\n + \ \"docker (==6.0.1)\",\n \"docker==6.0.1\",\n + \ \"tqdm (==4.65.0)\",\n \"tqdm==4.65.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Confidential + Container Security Policy Generator Extension\",\n \"version\": + \"0.2.16\"\n },\n \"sha256Digest\": \"3d084fb75949025cdb743ab821545822d127a324e750f2f2894a5e637d9637a6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.2.17-py3-none-any.whl\",\n + \ \"filename\": \"confcom-0.2.17-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.26.2\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"acccli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"deepdiff (==6.3.0)\",\n \"deepdiff==6.3.0\",\n + \ \"docker (==6.0.1)\",\n \"docker==6.0.1\",\n + \ \"tqdm (==4.65.0)\",\n \"tqdm==4.65.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Confidential + Container Security Policy Generator Extension\",\n \"version\": + \"0.2.17\"\n },\n \"sha256Digest\": \"46c3b0007c005bce38579b37e22e02e41b5a11139b5a9028dbefab116fe2c264\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.2.18-py3-none-any.whl\",\n + \ \"filename\": \"confcom-0.2.18-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.26.2\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"acccli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"deepdiff (==6.3.0)\",\n \"deepdiff==6.3.0\",\n + \ \"docker (>=6.1.0)\",\n \"docker>=6.1.0\",\n + \ \"tqdm (==4.65.0)\",\n \"tqdm==4.65.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Confidential + Container Security Policy Generator Extension\",\n \"version\": + \"0.2.18\"\n },\n \"sha256Digest\": \"8a3dace12da4985a78fa2a765b7a3a69c28be45a3013a210f00f773ec70e5177\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"confcom-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.26.2\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"acccli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"deepdiff (==6.3.0)\",\n \"deepdiff==6.3.0\",\n + \ \"docker (>=6.1.0)\",\n \"docker>=6.1.0\",\n + \ \"tqdm (==4.65.0)\",\n \"tqdm==4.65.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Confidential + Container Security Policy Generator Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"9681fb1b05c1505dbd85333d475fc5d50c9144514ca1e4bf3ec041c2754249e4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.3.1-py3-none-any.whl\",\n + \ \"filename\": \"confcom-0.3.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.26.2\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"acccli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"deepdiff (==6.3.0)\",\n \"deepdiff==6.3.0\",\n + \ \"docker (>=6.1.0)\",\n \"docker>=6.1.0\",\n + \ \"tqdm (==4.65.0)\",\n \"tqdm==4.65.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Confidential + Container Security Policy Generator Extension\",\n \"version\": + \"0.3.1\"\n },\n \"sha256Digest\": \"7625b50a59e91c96cdd3ab92a392ae1bae543bc284819690a3996dc041cf5668\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.3.2-py3-none-any.whl\",\n + \ \"filename\": \"confcom-0.3.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.26.2\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"acccli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"deepdiff (==6.3.0)\",\n \"deepdiff==6.3.0\",\n + \ \"docker (>=6.1.0)\",\n \"docker>=6.1.0\",\n + \ \"tqdm (==4.65.0)\",\n \"tqdm==4.65.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Confidential + Container Security Policy Generator Extension\",\n \"version\": + \"0.3.2\"\n },\n \"sha256Digest\": \"e71178449eeab3cba46c3049dd09d56481e39dc0efa5252f3ccaccf65db4ab8b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.3.3-py3-none-any.whl\",\n + \ \"filename\": \"confcom-0.3.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.26.2\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"acccli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"deepdiff (==6.3.0)\",\n \"deepdiff==6.3.0\",\n + \ \"docker (>=6.1.0)\",\n \"docker>=6.1.0\",\n + \ \"tqdm (==4.65.0)\",\n \"tqdm==4.65.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Confidential + Container Security Policy Generator Extension\",\n \"version\": + \"0.3.3\"\n },\n \"sha256Digest\": \"473b131008a5af987dcaf2bc54ef183fb2568a43f874ef6ff26a908a82ec0d86\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.3.4-py3-none-any.whl\",\n + \ \"filename\": \"confcom-0.3.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.26.2\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"acccli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"deepdiff (==6.3.0)\",\n \"deepdiff==6.3.0\",\n + \ \"docker (>=6.1.0)\",\n \"docker>=6.1.0\",\n + \ \"tqdm (==4.65.0)\",\n \"tqdm==4.65.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Confidential + Container Security Policy Generator Extension\",\n \"version\": + \"0.3.4\"\n },\n \"sha256Digest\": \"3de7244ea8f1c93621e1aac801be0495cd346dfcb2011aa59632cd134be6c16c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.3.5-py3-none-any.whl\",\n + \ \"filename\": \"confcom-0.3.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.26.2\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"acccli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"deepdiff (==6.3.0)\",\n \"deepdiff==6.3.0\",\n + \ \"docker (>=6.1.0)\",\n \"docker>=6.1.0\",\n + \ \"tqdm (==4.65.0)\",\n \"tqdm==4.65.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Confidential + Container Security Policy Generator Extension\",\n \"version\": + \"0.3.5\"\n },\n \"sha256Digest\": \"b8f8dccd506a69c8a3470f17c864d079b55580cc2f4f5fbc96db2f45c61fb651\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.3.6-py3-none-any.whl\",\n + \ \"filename\": \"confcom-0.3.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.26.2\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"acccli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"deepdiff (==6.3.0)\",\n \"deepdiff==6.3.0\",\n + \ \"docker (>=6.1.0)\",\n \"docker>=6.1.0\",\n + \ \"tqdm (==4.65.0)\",\n \"tqdm==4.65.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Confidential + Container Security Policy Generator Extension\",\n \"version\": + \"0.3.6\"\n },\n \"sha256Digest\": \"4374d76ff30f3ccd484af76e9e184a4e27d4461d78e23f7872ae3b3a6f689844\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"confcom-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.26.2\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"acccli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"PyYAML (>=6.0.1)\",\n \"PyYAML>=6.0.1\",\n + \ \"deepdiff (==6.3.0)\",\n \"deepdiff==6.3.0\",\n + \ \"docker (>=6.1.0)\",\n \"docker>=6.1.0\",\n + \ \"tqdm (==4.65.0)\",\n \"tqdm==4.65.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Confidential + Container Security Policy Generator Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"73823e10958a114b4aca84c330b4debcc650c4635e74c568679b6c32c356411d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"confcom-1.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.26.2\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"acccli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"PyYAML (>=6.0.1)\",\n \"PyYAML>=6.0.1\",\n + \ \"deepdiff (==6.3.0)\",\n \"deepdiff==6.3.0\",\n + \ \"docker (>=6.1.0)\",\n \"docker>=6.1.0\",\n + \ \"tqdm (==4.65.0)\",\n \"tqdm==4.65.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Confidential + Container Security Policy Generator Extension\",\n \"version\": + \"1.0.1\"\n },\n \"sha256Digest\": \"6b54ba325594ccbd47874ff2f0696e2e4cf55eaf82e071cd29493f04ae9466af\"\n + \ }\n ],\n \"confidentialledger\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confidentialledger-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"confidentialledger-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/confidentialledger\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"confidentialledger\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConfidentialLedger Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"a8428687acab162b982153333766ec0f6888b2ce71dfd24f815cd4ee1e4b3ac3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confidentialledger-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"confidentialledger-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confidentialledger\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"confidentialledger\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConfidentialLedger Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"3afbf49f10cdddd9675562364ce2275f6f70eb5318fa85b658d711b1e24dc94e\"\n + \ }\n ],\n \"confluent\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/confluent-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"confluent-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.17.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/confluent\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"confluent\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ConfluentManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"4a6ffd3d10898183b66b0933064bc6d9bbade0e9af32be3348412b75310e07cb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confluent-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"confluent-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.17.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/confluent\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"confluent\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ConfluentManagementClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"edf3b0d4afc36a3aaa9f68723f1db8b26bedcb5a5abcb053556146e4604cf31a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confluent-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"confluent-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.25.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/confluent\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"confluent\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ConfluentManagementClient Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"62ea75ea44aa9c2872ec0f3d396eb6e35f37e0799890afa5f82d2187f9cace58\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confluent-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"confluent-0.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.25.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/confluent\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"confluent\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ConfluentManagementClient Extension\",\n \"version\": + \"0.4.0\"\n },\n \"sha256Digest\": \"7b812940a77094bc916c745a61b7732966de4e7943a7541c0a402c0d912bc6af\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confluent-0.6.0-py3-none-any.whl\",\n + \ \"filename\": \"confluent-0.6.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confluent\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"confluent\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ConfluentManagementClient Extension\",\n \"version\": + \"0.6.0\"\n },\n \"sha256Digest\": \"7987d22e0e9cada28087a900bfa534865531941f2bbfe967eb46c90b2e0a12be\"\n + \ }\n ],\n \"connectedk8s\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.1.5-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.1.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"k8connect@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes\",\n \"pycryptodome\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.1.5\"\n },\n + \ \"sha256Digest\": \"1b529c1fedb5db9dee3dc877ca036f5373d307ca8a07c278d07126531b1c55b6\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"k8connect@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes\",\n \"pycryptodome\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"d306355d5568f9f5b201db9f5bda28fc0b142c6b70164a87bf56974239749ebd\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"k8connect@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes\",\n \"pycryptodome\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.2.1\"\n },\n + \ \"sha256Digest\": \"e910b1a0abee28121d5c216821c5d88cefc87030eb3068e699135314ecb0f8c9\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.3-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.2.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"k8connect@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes\",\n \"pycryptodome\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.2.3\"\n },\n + \ \"sha256Digest\": \"9660bbd577c66af1bcebeeaaec9cabb61cd27a0b58c6fe9a9a795d6a73777ee9\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.4-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.2.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"k8connect@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes\",\n \"pycryptodome\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.2.4\"\n },\n + \ \"sha256Digest\": \"4de66f7e8cecdfab8c91bf4f37347770fb17e087454159d3a5c81e0205f2da2c\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.5-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.2.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"k8connect@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes\",\n \"pycryptodome\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.2.5\"\n },\n + \ \"sha256Digest\": \"0c23ebd04c37b26219cd224134e8af675130cc346808ae008cd5cfc4f3b1bd84\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.6-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.2.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"k8connect@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes\",\n \"pycryptodome\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.2.6\"\n },\n + \ \"sha256Digest\": \"165411ce6ecdda8a4705bd9e93998b1ffdf6ddc88b01ed0ce12a3c100d1b9549\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.7-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.2.7-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"k8connect@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.2.7\"\n },\n + \ \"sha256Digest\": \"115bbeb79206632301a20dc4b1d6604f5c126c82c0ba1a9a58131a66da30a7dc\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.8-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.2.8-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"k8connect@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.2.8\"\n },\n + \ \"sha256Digest\": \"a0f8d12304b097a65d2b22f4e47faa6c6899e680bab77dfb41e72d2722e7e7d6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-0.2.9-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-0.2.9-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"k8connect@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"0.2.9\"\n },\n + \ \"sha256Digest\": \"55377bea57ae6288a501ea65ff2c68b2961ac7582da9b7646960faf17583e3dd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"9eb34e10523ee5bbd9a4be03915532da7acc3be11631fb646807085c09380c59\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.0\"\n },\n + \ \"sha256Digest\": \"47b871998ac7c3b90689c8cfef18d1d1c9a77d04fabd64a0071504dd434af5c8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.1\"\n },\n + \ \"sha256Digest\": \"522d70fb956e23f2a705ea51d8227845844ec0648263a5e7504543a493c67441\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.2\"\n },\n + \ \"sha256Digest\": \"70fd92b69c9c06d1bf22984a06d8027a2d3f192d0c59388cef2a3861dc79874f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.3\"\n },\n + \ \"sha256Digest\": \"f0845d6b310c645327a648fc555acc52f02fa8ed31054fc056c7adb1a37e5f40\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.5\"\n },\n + \ \"sha256Digest\": \"41edf3789d85074f1159645c7257ac747709ea613c2c2c80a95cdfee92e36fa5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.6\"\n },\n + \ \"sha256Digest\": \"d93e28cac3425b688581cd885d198173bf0dc5e20e91d00e3f176519e0fbddeb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.7\"\n },\n + \ \"sha256Digest\": \"fa8ed32f122136c0774361ffe78eea2e3189ede8bacc72ca6b972b6ab87d6393\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.8\"\n },\n + \ \"sha256Digest\": \"21cca7dcd973655694fcaa927563bb6afd2463cf6e6ce450e45ad8f27ab33ed9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.9\"\n },\n + \ \"sha256Digest\": \"26c85757eb59ec8309d19f14dfab94cb28039a21015ce70106cf618e57face59\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.10-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.10\"\n },\n + \ \"sha256Digest\": \"9cd74663e39095fd58510ccebda78586205c6b536f89c90badbd647f6b84b0a9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.1.11-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.1.11-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.1.11\"\n },\n + \ \"sha256Digest\": \"986924760ccd29d74a35b5fb2253a23400d6e27e48521b72fc8d06a493eb4faa\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.0\"\n },\n + \ \"sha256Digest\": \"e6873b0cdcfb82cda00f00dfdc5ce9d0daf4db651e100c6c3e3ff58ca89732ab\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"2.29.0\",\n \"azext.minCliCoreVersion\": \"2.16.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.1\"\n },\n + \ \"sha256Digest\": \"8a6a3e88952c36d7d38602953b1a3de3386ab18bc0cc79e7b74b931fe0d57f3d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"2.29.0\",\n \"azext.minCliCoreVersion\": \"2.16.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.2\"\n },\n + \ \"sha256Digest\": \"03c7625c0e4a09da8c4ea5051bd5d2a92d9e22d085b56cc30b319bb941f254b4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"2.29.0\",\n \"azext.minCliCoreVersion\": \"2.16.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.3\"\n },\n + \ \"sha256Digest\": \"3dff7553c723ef87aeb5ad5b20f3dc56a59324254ee15d880f9c1303eb5984aa\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.maxCliCoreVersion\": + \"2.29.0\",\n \"azext.minCliCoreVersion\": \"2.16.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.4\"\n },\n + \ \"sha256Digest\": \"2106bdef362215013f5b55141e878ba54db63359fb57a7751ea1841c6ba9a915\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.5\"\n },\n + \ \"sha256Digest\": \"fd0bc6f534e5a9e72fe6585031eeb29655d05f2cac4f505804bc6052a52c5fcd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.6\"\n },\n + \ \"sha256Digest\": \"473e31ada7636316304b2a39a76654722a0f5409bf8a2ffddf196ccc42df10a4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.7\"\n },\n + \ \"sha256Digest\": \"3f13d1b95c89865a8bdc0d40323956d599305892a54085e1115866b429ab2fa1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.8\"\n },\n + \ \"sha256Digest\": \"df97793b98a0f8e2e70f8a7942c6d65b9e581c54cf3f7632d4c48f01b2426a09\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.9\"\n },\n + \ \"sha256Digest\": \"06cb4e2aa841abeb712b9e564748c28b14cc49cc30cd65b05730f633120c7666\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.10-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.10\"\n },\n + \ \"sha256Digest\": \"f470e60e651201635e358411d9e07f0a9519fa059ca33f5543a9bff2982d8998\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.2.11-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.2.11-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.16.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.2.11\"\n },\n + \ \"sha256Digest\": \"0cc9fb7514b040ec8deb4269282c16a1d382c95a3b3a7def04ed6e795f85d62d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.1\"\n },\n + \ \"sha256Digest\": \"b728b34c4c3edf32744d092cd915f62f4d4898e959214014905807c136518e94\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.2\"\n },\n + \ \"sha256Digest\": \"e392698b2f1f7a545f0f0c40cca2c17ba74cdd47db2299b7eaea1d3e0b6595a9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.3\"\n },\n + \ \"sha256Digest\": \"1a42dd74a1c4d8552ed57112314da641a8e78acc1ba7ec763ebecc390b5aaf9c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==11.0.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.4\"\n },\n + \ \"sha256Digest\": \"83ed63bb821ae47b944b6d2e4894229bfc76e9b0cefec8b73a0c74f9ea44e833\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==24.2.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.5\"\n },\n + \ \"sha256Digest\": \"17ba7dd032c87e7ff4b9cce298dd81171e6e75bcfe2912f7c2f3cd1f55c00d11\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==24.2.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.6\"\n },\n + \ \"sha256Digest\": \"5c0c55940802239372608d9c7faf1c76e4f2f2fef5ebbd36be7011ae854a7563\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==24.2.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.7\"\n },\n + \ \"sha256Digest\": \"5a62c4c4e6e27e0e9f5522b12118ce5dcb227fd42f2ac03495cafd8fd9a3bcba\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==24.2.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.8\"\n },\n + \ \"sha256Digest\": \"a2ca94688926fb98cece7b8624c5dd7cf9e6ae69eeb1bc9f1dd525ae1abdc95e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==24.2.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.9\"\n },\n + \ \"sha256Digest\": \"ad770af71a013785229d287705580e6b9815cafb7e10fb09c07b917baba813a0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.10-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==24.2.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.10\"\n },\n + \ \"sha256Digest\": \"e2c5055b87d3529d90574e67988e7cf7efabf8ce3515bb2e1017ae613bcc89a1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.11-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.11-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==24.2.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.11\"\n },\n + \ \"sha256Digest\": \"1587e042d7e37ca66d7cdff96f06f334e388e01689efdbf1622daff5d56182e1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.12-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.12-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==24.2.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.12\"\n },\n + \ \"sha256Digest\": \"1b2613fe1d4a12eb5cdcf3d57189d4a3213d572fdf0c67146d8d7cd5910190ac\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.13-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.13-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==24.2.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.13\"\n },\n + \ \"sha256Digest\": \"6e145db641dd77cd5d73271562f74f70d9bc4171bec05449b7722d54eb1e0ba2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.14-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.14-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==24.2.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.14\"\n },\n + \ \"sha256Digest\": \"06f3da32b2bb7f9b967da242824bceb89ed98ccde37ef18d5e33a17d5158d6b9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.15-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.15-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==24.2.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.15\"\n },\n + \ \"sha256Digest\": \"719aa6e73bd25309ab1275ec06cce036cb650204e306606bee741e2488b0a1d2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.16-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.16-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==24.2.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.16\"\n },\n + \ \"sha256Digest\": \"614823c043de311a609cd257176cf611e56ddec8f6f3855ed444d77519dc50e6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.17-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.17-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==24.2.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.17\"\n },\n + \ \"sha256Digest\": \"3be716e8862c6c67da236e17f0a88e369da5ac41e6d5cb350e40166eed7953e2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.18-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.18-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==24.2.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.18\"\n },\n + \ \"sha256Digest\": \"69b91412f1df60a38bac3b5965dc438537f6dd66176e561cc0f145be4f1c6ef3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.19-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.19-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==24.2.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.19\"\n },\n + \ \"sha256Digest\": \"c7a8bde1873739b3a97ccf6d343d483fe18e475f19e601e29a607b299503c3bd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.3.20-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.3.20-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==24.2.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.3.20\"\n },\n + \ \"sha256Digest\": \"3d09e173ad23cbaaa45736b699dc48f7704ac31eadb14eec72b89ec101d674f1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.4.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.4.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"kubernetes (==24.2.0)\",\n \"pycryptodome + (==3.14.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.4.0\"\n },\n + \ \"sha256Digest\": \"f7685ff5b3e92480db3317cf5cdea31c5a5e8c4527356455df106c644c752c57\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.4.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.4.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.4.1\"\n },\n + \ \"sha256Digest\": \"3d4346bc58d8a0973a49af816a8e5538d52f99c4a3392af067cf50d5a58647a9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.4.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.4.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.4.2\"\n },\n + \ \"sha256Digest\": \"1e23c1da9442b6adcef2422c20ee5395bfc6c2cd3e56d412b82731d2b795fc45\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.5.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.5.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.5.2\"\n },\n + \ \"sha256Digest\": \"754b410778653117b3a0f36039f00b610f8137e0274fd0070cb45eefd5eef6b8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.5.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.5.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.5.3\"\n },\n + \ \"sha256Digest\": \"3eb8986e7298f36a586d5d63a0a2581f378df974b972e66553d38ce1bab39fd2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.5.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.5.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.5.4\"\n },\n + \ \"sha256Digest\": \"6b0725e0873af82a9f503bc3911ab5bef2c34db21b9a64eb8489769055a7a1dc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.5.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.5.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.5.6\"\n },\n + \ \"sha256Digest\": \"2b40520407824ce59cecd0977e31af5a16c0695e9c68b383e388472b059fd82c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.6.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.6.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.6.0\"\n },\n + \ \"sha256Digest\": \"945e3ede6eefa3c66a3b4104f9d7609e10dcadd989544bcd5984d0fa161185bf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.6.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.6.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.6.1\"\n },\n + \ \"sha256Digest\": \"ba81e9fa53a7a5059fa67a81b5a2c1b7ff460adcc5dbb560ba1802afafc13619\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.6.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.6.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.6.2\"\n },\n + \ \"sha256Digest\": \"a189a6b8cab490ca921efb085e5dde42605a817051d615f9ed43a127955bae5a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.6.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.6.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.6.3\"\n },\n + \ \"sha256Digest\": \"04609310d99babb5b07bb6159a6f5c2c6ea58f758505af95a206f88ae33f7701\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.6.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.6.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.6.5\"\n },\n + \ \"sha256Digest\": \"c180bdaa2caed3a613f5775ece064b68c12e9073aa19c88bbd96169a48506eb7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.6.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.6.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.6.6\"\n },\n + \ \"sha256Digest\": \"285f5c379fcdf1ff1467f1f2f95d2b1f40dc824104f2df294a86f9823617b22e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.6.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.6.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.6.7\"\n },\n + \ \"sha256Digest\": \"e9729cfadfb96f6842e880df2fc784800f5b6c65f2252c69c6167290f0862a2d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.6.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.6.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.6.8\"\n },\n + \ \"sha256Digest\": \"4acaa0c9e22f6d4ecf97af1ae623972e2e76ed2b2f0ced0999a83a4de5ebecb9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.7.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.7.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.7.0\"\n },\n + \ \"sha256Digest\": \"27494835cb177bd230126a21ebdc4efb0a33389832073d3fcab1a75661943804\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.7.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.7.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.7.1\"\n },\n + \ \"sha256Digest\": \"56428abd1dc513cdb2602a1c23fc4d566d854597f52b0d7dbe865be29d308806\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.7.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.7.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.7.2\"\n },\n + \ \"sha256Digest\": \"049e559a8db6fa28b444d3ec6478157da18e8abe69f3500f31783535cd30bddc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.7.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.7.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.7.3\"\n },\n + \ \"sha256Digest\": \"66a5ac7202ac385340423c5a62a8e53dc27a2e670fbc0e336e2d70265c5a5d6e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.8.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.8.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.8.0\"\n },\n + \ \"sha256Digest\": \"b2e91cf13a3385499e1414fd5e8fde46b2a62bb976f92649fdba2bb7bb6a2bfe\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.9.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.9.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.9.0\"\n },\n + \ \"sha256Digest\": \"746df54b46d9952fe85fbca64ae5dc5e2ddfca2f2c5120f5314b8f45f9900832\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.9.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.9.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.9.1\"\n },\n + \ \"sha256Digest\": \"bde5a26cfbffa0652b39bc00e8ee3fc4c6b8f9b93b103933cb1f44d55fe22f4f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.9.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.9.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.9.2\"\n },\n + \ \"sha256Digest\": \"82ec6a3628e9e7308a1fb9752530f0ae8654bd282591e00c8655200bf3a5e70d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.9.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.9.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.64.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.9.3\"\n },\n + \ \"sha256Digest\": \"e0eb8df763d7cc85a0396856bbf4b8a1f43801b2131fa5d21b5b2850e96363ef\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.10.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.10.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.64.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.20.0)\",\n \"pycryptodome==3.20.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.10.0\"\n },\n + \ \"sha256Digest\": \"0f6cd82b5357222d5213d5140522b1683cef2974a9b39eb3b97d10bee3a8b636\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.10.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.10.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.64.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.20.0)\",\n \"pycryptodome==3.20.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.10.1\"\n },\n + \ \"sha256Digest\": \"34c5a8f4b06fe910c6b44d3e51a3ef04f7bc056f0912f4add9a782b5898ebc58\"\n + \ }\n ],\n \"connectedmachine\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Connectedmachine Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"0f4d009da4e091aece74cd53833fe63e5af18d68fcf6308a08155ee5284f12fb\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedmachine\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConnectedMachine Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"b9a2f3ea3fb7a4c981fad30ff670ff3ca1f8fbef0aede36a8e8a20050b1a245d\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-0.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedmachine\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConnectedMachine Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"591bed0d6a6251028471bac6a9ebf0f641d7765bf04b13271aae29c37491ba55\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-0.4.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedmachine\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConnectedMachine Extension\",\n \"version\": + \"0.4.0\"\n },\n \"sha256Digest\": \"2183f183dac5e88820b8f69d8e56936a94b6b2bd16c7619c41f7ceac52951abf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.4.1-py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-0.4.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connectedmachine\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConnectedMachine Extension\",\n \"version\": + \"0.4.1\"\n },\n \"sha256Digest\": \"44d84d979b15f9bdc0b5e873e308a03ad66edecf9bcf8dc1bbd31d81734cee0d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.5.0-py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-0.5.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedmachine\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConnectedMachine Extension\",\n \"version\": + \"0.5.0\"\n },\n \"sha256Digest\": \"c83822da39abbd0d12672816ab36eb1f1f2def74008464a1d5cea859c54d615f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.5.1-py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-0.5.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedmachine\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConnectedMachine Extension\",\n \"version\": + \"0.5.1\"\n },\n \"sha256Digest\": \"cbba314a6f37d094709850951c984093c25e1eed25c3e9aae81f584e2bc20655\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.6.0-py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-0.6.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Programming + Language :: Python\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedmachine\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConnectedMachine Extension\",\n \"version\": + \"0.6.0\"\n },\n \"sha256Digest\": \"234a1ea68106d3cdc184d84eedd990eca90f13434a04d797ba1391c9056ec461\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.7.0-py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-0.7.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedmachine\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConnectedMachine Extension\",\n \"version\": + \"0.7.0\"\n },\n \"sha256Digest\": \"792975ebf0260767481b2ffab0aa3154509c55a9ab60c7f987c3fdead726cd82\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedmachine\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConnectedMachine Extension\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"f829b171bc489bd1bffea518040acc74608581dae798f4b23bedfe8bf7445383\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-1.0.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedmachine\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConnectedMachine Extension\",\n \"version\": + \"1.0.0b2\"\n },\n \"sha256Digest\": \"8b8c4340c4c6552e3826220ffb95bf619447675b0469304b71fa80e2e4e31c81\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 5 - Production/Stable\",\n \"Intended Audience + :: Developers\",\n \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedmachine\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConnectedMachine Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"149eead49d0c046f778ea4d99d78448f38157b86ea591d1eea545f8896596511\"\n + \ }\n ],\n \"connectedvmware\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"0.1.2\"\n + \ },\n \"sha256Digest\": \"5bbabea61360ad74e987a33b155e267c2f940678d9220210999e9e723541d123\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"0.1.3\"\n + \ },\n \"sha256Digest\": \"481fd314b1681185d2d64d1ea21d5591d0bf8411786e521e5bc9dae8eb862415\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.1.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"0.1.4\"\n + \ },\n \"sha256Digest\": \"a39af3a33da02598ec45f4b6167c2f5a25030e8fefd8d2aff186d604cb46e3db\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.1.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"0.1.5\"\n + \ },\n \"sha256Digest\": \"9b9ecb66734d8c31410b652d417deef9e35e2624873b36c0f3d6f90634d807e8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.1.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"0.1.6\"\n + \ },\n \"sha256Digest\": \"3e13df39d8993cfe5ab0bf0821f335dc44bf2919c57d73ec88156671041ad239\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.1.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arcprivatecloudsfte@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"0.1.7\"\n + \ },\n \"sha256Digest\": \"857f7627ae3e618e9dc09c8ce882349593ef23237fcc24174a5097c51f88d86e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.1.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arcprivatecloudsfte@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedvmware\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pwinput\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Connectedvmware Extension\",\n \"version\": + \"0.1.8\"\n },\n \"sha256Digest\": \"f560b7311cf3c41102b5c6e93410b446fcb534dbf00c8b853c923580ac703269\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.1.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arcprivatecloudsfte@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedvmware\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pwinput\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Connectedvmware Extension\",\n \"version\": + \"0.1.9\"\n },\n \"sha256Digest\": \"09d4855a4f1b218b3a4179f5158dd47cdb44828f4fdca43396d19d93ad80f2db\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.1.10-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arcprivatecloudsfte@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedvmware\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pwinput\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Connectedvmware Extension\",\n \"version\": + \"0.1.10\"\n },\n \"sha256Digest\": \"3b0afa12344909f45d146ee1ae7eab87928fd6836d8875f2126ac32ad0df23bb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.11-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.1.11-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arcprivatecloudsfte@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"0.1.11\"\n + \ },\n \"sha256Digest\": \"48e2947e084455712603478c7bfa574ed88930fc1b9b7cd62ba000d198a17a30\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.12-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.1.12-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arcprivatecloudsfte@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"0.1.12\"\n + \ },\n \"sha256Digest\": \"cd36eaa8d02f7fd4e0645884a31e8636630d49e1d1205461f0816edbd03ed4ad\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arcprivatecloudsfte@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"1b28904817cc5115f69a9d312c6ce6f829ba2dd20e6aeecf3965cfccb43d063d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arcprivatecloudsfte@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"0.2.1\"\n + \ },\n \"sha256Digest\": \"bfb72a51e7163f946caa4ed1dbf04e92a64ffdd7bcc508d4054a01cceb985aa2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.2.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arcprivatecloudsfte@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"0.2.2\"\n + \ },\n \"sha256Digest\": \"61310e9f170f35d21ed4fed7bbe263aafd31c5aa71a4d3818d0fe5ddb3c2669e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.2.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.2.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arcprivatecloudsfte@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"0.2.3\"\n + \ },\n \"sha256Digest\": \"a3ad2f74e951b682b8070b9a793fd6679229320697f4ee9e6d9f6f00737f130c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.2.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-0.2.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arcprivatecloudsfte@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"0.2.4\"\n + \ },\n \"sha256Digest\": \"8a96c790317dfee523d548c28a51191746ff3b45ede4fee56e804d195de437f6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.maxCliCoreVersion\": \"4.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arcprivatecloudsfte@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"089072ad61652bd825002baba46f072f27b181d5e21b52407907a333176901cf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"arcprivatecloudsfte@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"1.0.1\"\n + \ },\n \"sha256Digest\": \"92bcb19c2d19f7e5cf3e8527894324937380b831de19845cf4d382092c5dff39\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-1.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-1.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"arcprivatecloudsfte@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"d2122c64426853a4b3b766160f6291f29aed66d9aa266585c73d63305ed4d22b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-1.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-1.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"arcprivatecloudsfte@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"1.1.1\"\n + \ },\n \"sha256Digest\": \"28ef4a31c805d52aa16e749ec1382591b3089e970d8741deaf401a86c4e5e6ad\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-1.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-1.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"arcprivatecloudsfte@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"1.2.0\"\n + \ },\n \"sha256Digest\": \"b731a821c609aae8bfab7e0470b342b9179e7e0c65482f4a432a60d87a4c395f\"\n + \ }\n ],\n \"containerapp\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"3731c1d2222805059ca37e31cf85e9bc4af7981295e478d22a925d9ff4ce3a68\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"0ec557558700384ee58636bd759c7047a124971e7b92c03d835d0d03614da22a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.1\"\n },\n \"sha256Digest\": \"79b636f16c37152c2e3b23e24f421aed3fa159897afd2b61d80da73751d61645\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.36.0\",\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.2\"\n },\n \"sha256Digest\": \"581e704f223937b0e7fb99c0323768a04c956ade8b06cb7140454c06b85f254b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.36.0\",\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.3\"\n },\n \"sha256Digest\": \"63eb3289319ee4151d916329b368354085074b7b3ea21ed1d16d83a29cbe16b7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.36.0\",\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.4\"\n },\n \"sha256Digest\": \"e247b0bec42db5b95c37c879ea939ec1860b8e14b0d8aa54a5a5187fc52bec64\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.5\"\n },\n \"sha256Digest\": \"876cc6040ee07654eb9c45d6fe603531797902f06fa0caebc4ad1961f78c8d76\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.6\"\n },\n \"sha256Digest\": \"610df666637402173996efa3b8aaac0e4ae0a1608f5ea1006d252cda5f3eb4c6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.7\"\n },\n \"sha256Digest\": \"3e5b920980b5492929aeaa40ab7b1d2fd5a4dfa527b6c832c072792633055a8a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.8\"\n },\n \"sha256Digest\": \"788c9db70ae69b9f69ca24bda2438af8ea494de7ed4c32e9e4d83b351d30e796\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.9\"\n },\n \"sha256Digest\": \"148a1535e8327b1b4b091614d0b579d8638573286a2cc5878566032039974556\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.10-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.10\"\n },\n \"sha256Digest\": \"b9cbfd7a5b328d7aeba314b96602b77d711df482651b251e91bee9ac36697b47\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.11-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.11-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.11\"\n },\n \"sha256Digest\": \"d04b9087ac480c3d7cbea6bef7ae5f98d50fcf6fe35ed0c358bb27564cefca9b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.12-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.12-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.12\"\n },\n \"sha256Digest\": \"fa278cee406a63a4131f48980715c6962cf2f8d0f14f92b3c6c846c59091aa8a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.13-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.13-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\",\n \"pycomposefile + (>=0.0.29)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.13\"\n },\n + \ \"sha256Digest\": \"b79460358c83ff69dd942ed9bb5194f03d42062426a471194d9e1fc9f4121346\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.14-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.14-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\",\n \"pycomposefile + (>=0.0.29)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.14\"\n },\n + \ \"sha256Digest\": \"61ed509c783ecd07e6f94557c090150a818962b148def5e15cc30603f9bca196\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.15-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.15-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\",\n \"pycomposefile + (>=0.0.29)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.15\"\n },\n + \ \"sha256Digest\": \"fab4b6bbed951ad7e94b50af4e169ece562379b91a7ca3fae1987ebed01470e4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.16-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.16-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\",\n \"pycomposefile + (>=0.0.29)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.16\"\n },\n + \ \"sha256Digest\": \"de6bddcca942bbb447c680148c22ce12f7f0279b6437c839f9ad82db3e3062fe\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.17-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.17-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\",\n \"pycomposefile + (>=0.0.29)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.17\"\n },\n + \ \"sha256Digest\": \"08afc8c17a73d4a910d210a8863a7822de732e2a763d5ef7c2971fc1a9bbf9e8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.18-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.18-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\",\n \"pycomposefile + (>=0.0.29)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.18\"\n },\n + \ \"sha256Digest\": \"2f86a9d6eae01dd16801576febf29f42dbb5c1b11ce6a4d461df1804c735f386\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.19-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.19-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\",\n \"pycomposefile + (>=0.0.29)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.19\"\n },\n + \ \"sha256Digest\": \"191040f708d6f49ab908f364fc653e5398cd28d1bbd4f0c172e541d71c5ba0f3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.20-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.20-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\",\n \"pycomposefile + (>=0.0.29)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.20\"\n },\n + \ \"sha256Digest\": \"6c8affb758834439b76edaa724ecf7bc77a6f1d08979dad0a8178f9434406b15\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.21-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.21-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-cli-core\",\n \"pycomposefile + (>=0.0.29)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.21\"\n },\n + \ \"sha256Digest\": \"d63c2004502f698da946ebf552b748b0a7fc166a1f6599f6c1dd3a46309d1994\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.23-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.23-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.37.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycomposefile (>=0.0.29)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.23\"\n },\n \"sha256Digest\": \"192601c40b3570606161657d5ac719df246721763296e57251eb2cddfa45235a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.24-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.24-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycomposefile (>=0.0.29)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.24\"\n },\n \"sha256Digest\": \"512343a595e7bd5b49fbe3708e2251b3b6d3d951849fad180979466b57ec6a08\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.25-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.25-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycomposefile (>=0.0.29)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.25\"\n },\n \"sha256Digest\": \"7202c98ff5a6bdb549cf5f87226c76f8dab8b830076a8492099daac4871ef682\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.26-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.26-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycomposefile (>=0.0.29)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.26\"\n },\n \"sha256Digest\": \"d1dc15399cd9ec15f0c44d7f08bc6ba2e7d95665e3e26da97795fcbb70e763df\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.27-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.27-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycomposefile (>=0.0.29)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.27\"\n },\n \"sha256Digest\": \"dd74e5182921a7d38bfa2a29ba22bc8cb2308695b2ffdc8a1054d7ff7712205f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.28-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.28-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycomposefile (>=0.0.29)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.28\"\n },\n \"sha256Digest\": \"150df41ec23a399240ab9cac6600d570d7c0c4354744e258cc8507935304ebd5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.29-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.29-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycomposefile (>=0.0.29)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.29\"\n },\n \"sha256Digest\": \"be031f59aed530e28d3c3988bb3ebfe87b278894890bbde4cd6e7ecafb724e12\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.30-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.30-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycomposefile (>=0.0.29)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.30\"\n },\n \"sha256Digest\": \"1d36c948a9974cf4ddac58739c87e4c83dcd9b12a377ef1232091cb1539ffb04\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.31-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.31-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycomposefile (>=0.0.29)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.31\"\n },\n \"sha256Digest\": \"c32a6bcf2318889ca0096e428f5d612ec32a00871219c03e200bcbe109238e19\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.32-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.32-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycomposefile (>=0.0.29)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.32\"\n },\n \"sha256Digest\": \"21ca6a15900e60b7fb6c586f9ae9661ee2a5245661dd265016b0ef214bd3fb90\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.33-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.33-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycomposefile (>=0.0.29)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.33\"\n },\n \"sha256Digest\": \"8385c13f0f938930faaeed4dad67c1cc03b601bfb626e86e29bf87a310270166\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.34-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.34-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"pycomposefile + (>=0.0.29)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.34\"\n },\n + \ \"sha256Digest\": \"fee4dbe509a581c8a72f269baeaa50fbf8459d1b13391446c74300283d23919f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.35-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.35-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"pycomposefile + (>=0.0.29)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.35\"\n },\n + \ \"sha256Digest\": \"980914fb40826959f0bd2e8e89a7671c977cc179d7728e43a602cff9f1ff193e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.36-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.36-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"pycomposefile + (>=0.0.29)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.36\"\n },\n + \ \"sha256Digest\": \"233c449a1dd754fe559fbbc4b2cb1ce148d791fdc28b4b15fdc0349b40df13a3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.37-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.37-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"pycomposefile + (>=0.0.29)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.37\"\n },\n + \ \"sha256Digest\": \"2c0f948ff21826d8895c0049bb76e3945644c149f066cfc6ecf22e001d312d9f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.38-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.38-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"pycomposefile + (>=0.0.29)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.38\"\n },\n + \ \"sha256Digest\": \"b896c8f0d4946af5fea9831d2f3c10831add4a25fdb94f23401ed73a79e778de\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.39-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.39-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"pycomposefile + (>=0.0.29)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.39\"\n },\n + \ \"sha256Digest\": \"03812ad93bb642de2f4abb75445785d9b8b5a88ae9f6efeef2a3a670244390ec\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.40-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.40-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.40\"\n },\n + \ \"sha256Digest\": \"a142df84576d2e676e648b95134012f19182d1ac50867406eb9c41fd604e8eaf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.41-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.41-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.41\"\n },\n + \ \"sha256Digest\": \"071eaf5d68423948b0745d9b763ac06ce3414fb015ff19cfcd3f62acf181cfde\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.42-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.42-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.42\"\n },\n + \ \"sha256Digest\": \"15d05517859e65c80c8aa3dd5a4b339b1113f4b0be449a726c8f12204d5e0b8f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.43-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.43-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.43\"\n },\n + \ \"sha256Digest\": \"ae86a2831a5fbc3046cdbeb684590cbf4d9d21f7840a94fe54824d899f37205d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.44-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.44-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.44\"\n },\n + \ \"sha256Digest\": \"d7e136b4c9e9221c12abc53a243638aad571c36243ef582b7db91c6b419a3a52\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.45-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.45-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.45\"\n },\n + \ \"sha256Digest\": \"440016e65a14183896278ad83ec8161feff21fb7f432ececa5891db778770b2c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.46-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.46-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.46\"\n },\n + \ \"sha256Digest\": \"29b5a105839e893b51ae5cb3ea77e3df1e6827ad6660f3d31f0598a107415138\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.47-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.47-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.47\"\n },\n + \ \"sha256Digest\": \"d13c72a0c98a03417661dd8c502df88b1344efe7c0ef009ae5ea2131a755ae1d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.48-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.48-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.48\"\n },\n + \ \"sha256Digest\": \"bcdc3a88797996d2171bbf336e26662bea19990e2adfdcdb1199796326e40496\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.49-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.49-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.49\"\n },\n + \ \"sha256Digest\": \"73e5d4282b505f0b0797101e15e184907767fe9e8b854dc66a21c1abc1f807f7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.50-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.50-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.50\"\n },\n + \ \"sha256Digest\": \"847139ab567ffed02e7844a9a4c6c2f2032e650c673343234674e0e7ab53c58d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.51-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.51-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.51\"\n },\n + \ \"sha256Digest\": \"963cea12deec4b900936225d5cab1e8c5667b35cf9651b5f2e59fff107a13f82\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.52-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.52-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.52\"\n },\n + \ \"sha256Digest\": \"04edd05ecfe1b2ae5d1485efb32a2536a97021b6265ecd3ab6b0b635aa8cc510\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.53-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.53-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.53\"\n },\n + \ \"sha256Digest\": \"f9b4f3928469efcc1bfbc98cd906d9d92e72617e5c21cf3ade8b37651607c3e1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.54-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.54-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.62.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.54\"\n },\n + \ \"sha256Digest\": \"a9e51cef9e7d1c59a711c762867dca4a10273450af48701c3b65dd59e34bbcbc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.55-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.55-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.62.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.55\"\n },\n + \ \"sha256Digest\": \"d6971ccf8ca73e03df7e123fa7c85e5e63235bb1ac1c274c26bbc1f509d68115\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.62.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"d80b83b0e22770925c24bca150c84182376b7b0aff9b6f28498d769dc8618b45\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-1.0.0b2-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-1.0.0b2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.62.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"1.0.0b2\"\n },\n + \ \"sha256Digest\": \"a20220034614c763d21a7bb1f0551f94139dd4f71b4dbfa30905a1a7914dc62b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-1.0.0b3-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-1.0.0b3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.62.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"1.0.0b3\"\n },\n + \ \"sha256Digest\": \"4a239269a2f864a775bd28cfb04570d9613ff8aada3fc9a18cd07efbd979b5e5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-1.0.0b4-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-1.0.0b4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.62.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"1.0.0b4\"\n },\n + \ \"sha256Digest\": \"4d6a5e7a4141b3ca00d38c0698f87d79a157d0dd3fd8dbf735544efeeb7be261\"\n + \ }\n ],\n \"cosmosdb-preview\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"83be5a723d6a0063c4cd17db52a172ef8f9453435d316ef0abbd2ca2dd8e6ca8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"d8199ccce62c5c7f8670ddf7eb27493fa1c5079ed152607c958fc2b53201fc83\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.3.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"079af4056ab89f7e27d2a3b6b22c4147b47ce3a27f744ce8b3cde38998afa89e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.4.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.4.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.4.0\"\n },\n \"sha256Digest\": \"751699f42dffaef4a365aeea0ddcc5432a3bafeb0550ee6ff628df1b0a9e02bd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.5.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.5.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.5.0\"\n },\n \"sha256Digest\": \"dd61fd0b1e3b67b63bf731886995743798b72f6c9b00c3c8a589b3cb1b7be3cf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.6.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.6.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.6.0\"\n },\n \"sha256Digest\": \"6132e8c9597e3ab57657b6f3607e19c457e9a08a82a1c1b4825b8ed4ae02c04b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.7.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.7.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.7.0\"\n },\n \"sha256Digest\": \"c11b611e3c8eeaaf2b6a5ca935ae7e6072834be77a777f1749d7c9c6419ae55a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.8.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.8.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.8.0\"\n },\n \"sha256Digest\": \"513b9683ef78ddb6316ed2d8b41f64f6e6278ae169aa3d5735c061108b40ec78\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.8.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.8.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.8.1\"\n },\n \"sha256Digest\": \"12dcc1e32460d12bf62cf3f5aa67f519dc0f48a4a7d70e36c52b24d50f7cd251\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.9.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.9.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.9.0\"\n },\n \"sha256Digest\": \"689f99954b56367f37956efcc80911719052048b0e0203b048a425556686d9f1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.10.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.10.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.10.0\"\n },\n \"sha256Digest\": \"de57720e30785823d821ade1f08886871aa3188335fb5105e960833f2aebacdb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.11.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.11.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.11.0\"\n },\n \"sha256Digest\": \"e9a21eab81616e7f71b5a4d764e541cbdea22d3dff3a8fc326f1ef06a1067421\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.12.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.12.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.12.0\"\n },\n \"sha256Digest\": \"e0f2007be10a9821d12ff7327b35480ddb8df57e8f990ecfdeedb256d9c70001\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.13.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.13.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.13.0\"\n },\n \"sha256Digest\": \"5dcfac7215584840899fb0cd1ab853c20b7915400a02981850dae857ba20177d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.14.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.14.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.14.0\"\n },\n \"sha256Digest\": \"7ada2c34d023530ef5ae2402966b362d36675fc247ad2b41917b8114b2af9c72\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.15.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.15.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.15.0\"\n },\n \"sha256Digest\": \"0c3ee01e583ebc81cee2908129bb988c69f50bcb2ca8425b788de378f4839b10\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.16.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.16.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.16.0\"\n },\n \"sha256Digest\": \"50882c87c092eb89310c0f7ebb800b3da9163d791f4417caa22ed5b47494a5b7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.17.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.17.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.17.0\"\n },\n \"sha256Digest\": \"73a220dda84f5425efb960d02a1017308c4d6642fded49a7e61d6de578f4fceb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.18.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.18.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.18.0\"\n },\n \"sha256Digest\": \"9d38dbc628c65dec65f111d072eecea6ca91043883b5a29f561767e1ce634cc7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.18.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.18.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.18.1\"\n },\n \"sha256Digest\": \"e75b001721b1a542f8ab8e15105e7b6502a1dc68f2850c20a97e67a6eecb003f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.19.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.19.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.19.0\"\n },\n \"sha256Digest\": \"aee16bae5d9bcde85fba80e6be5483c63709339f2227378ae4a721fad9a83ee0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.20.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.20.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.20.0\"\n },\n \"sha256Digest\": \"0e759bad4c3bd91e197d357ea804827e2030812b0751c9bac4472711e5baf4e2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.21.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.21.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.21.0\"\n },\n \"sha256Digest\": \"969496859093a6106bd2b10fff91121087f42a2bab4419f0dfcda52339681969\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.22.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.22.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.22.0\"\n },\n \"sha256Digest\": \"38a16ca955f74f0ad697a50a7e744897bc3c8ccd9ba9a1255156b318c4011c19\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.23.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.23.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.23.0\"\n },\n \"sha256Digest\": \"48bfbb7f278c721a249124023a097c68f89286ad37a5d871fe8d081a4b95b9d8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.24.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.24.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.24.0\"\n },\n \"sha256Digest\": \"60dd2f7b0dda74ccffec6adaf37dee10be09c03d13c9a664848933e052c5a4de\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.25.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.25.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.25.0\"\n },\n \"sha256Digest\": \"83fb8f0f097271a5baec41e6405f2f750beea3d8fbc1ac2e1c8cd2f32cb4f90b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.26.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-0.26.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"0.26.0\"\n },\n \"sha256Digest\": \"c761a022fa8e849534d51bb51c6b6a7c01b541a5f018532f7fe312f74f689b06\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"3a5910873138adf747ba8baed7be180981a74569c86c927ea6f1ae39d3de53bf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"1.0.1\"\n },\n \"sha256Digest\": \"c540018bc5da1252ec3e3e564552650d6af08f349f3ff339be398a7983caf2a9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-1.1.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-1.1.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"1.1.0b1\"\n },\n \"sha256Digest\": \"0fc11b2fcdd75c4868cfc43ec4be19c2128fd1d7b616b61e3364c3c1a0c4c1da\"\n + \ }\n ],\n \"costmanagement\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/costmanagement-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"costmanagement-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"costmanagement\",\n \"summary\": \"Microsoft Azure Command-Line + Tools CostManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"d5c8be4d6f3e59a44da32af66f8855c24d9855c5b7bdd2f6571c8721afa20223\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/costmanagement-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"costmanagement-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/costmanagement\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"costmanagement\",\n \"summary\": \"Microsoft Azure Command-Line + Tools CostManagementClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"0a6e0ee27fd5896b45eabf0c9227e63b3c1bbc4975adf4cb566647396fa511f2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/costmanagement-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"costmanagement-0.2.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/costmanagement\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"costmanagement\",\n \"summary\": \"Microsoft Azure Command-Line + Tools CostManagementClient Extension\",\n \"version\": + \"0.2.1\"\n },\n \"sha256Digest\": \"c6ca26bcffe2b897fc35b560f6fbf620ee563daf2396dc1bae67c8e4bd0e64c3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/costmanagement-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"costmanagement-0.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/costmanagement\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"costmanagement\",\n \"summary\": \"Microsoft Azure Command-Line + Tools CostManagementClient Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"5661a2082ecca000b0c764dc92585e2aa601ccd5eeeb296397533cf4da814cf6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/costmanagement-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"costmanagement-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/costmanagement\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"costmanagement\",\n \"summary\": \"Microsoft Azure Command-Line + Tools CostManagementClient Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"6e5e053d05bad6ad6305bd024f51e355e60fde8bb6a03350dfd81c25437d2e45\"\n + \ }\n ],\n \"csvmware\": [\n {\n \"downloadUrl\": + \"https://github.com/Azure/az-csvmware-cli/releases/download/0.3.0/csvmware-0.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"csvmware-0.3.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"shimitta@microsoft.com\",\n \"name\": + \"Shivam Mittal\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"csvmware\",\n \"summary\": \"Manage Azure VMware Solution + by CloudSimple.\",\n \"version\": \"0.3.0\"\n },\n + \ \"sha256Digest\": \"dfb9767f05ac13c762ea9dc4327169e63a5c11879123544b200edb9a2c9a8a42\"\n + \ }\n ],\n \"custom-providers\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/custom_providers-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"custom_providers-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"custom-providers\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Custom Providers Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"7da462aaa336184b53d7b0b831c0fa77c4239dabe4e70fa4e500e250cf11a8ec\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/custom_providers-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"custom_providers-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/custom-providers\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"custom-providers\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Custom Providers Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"8c0f062d96523bd6a95d53f09e48f9d47bf7aa75a9b735e93e6ee09647638b52\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/custom_providers-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"custom_providers-0.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/custom-providers\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"custom-providers\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Custom Providers Extension\",\n \"version\": + \"0.2.1\"\n },\n \"sha256Digest\": \"a9938f09c86fa4575e3c887206908cac15920af528c537c0b998362a1c43daf7\"\n + \ }\n ],\n \"customlocation\": [\n {\n + \ \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/customlocation/customlocation-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"customlocation-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"arcplatform-core@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/customlocation-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"customlocation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Customlocation Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"7d91a34784d92c77c4233c4578043e6fac729ad42b3b29d5d597c12b037d2267\"\n + \ },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/customlocation/customlocation-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"customlocation-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"arcplatform-core@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/customlocation-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"customlocation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Customlocation Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"fbda1780a9d1c8eec9a147d09f7681f47238a574333eaeddb8284cd7fa881815\"\n + \ },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/customlocation/customlocation-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"customlocation-0.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"arcplatform-core@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/customlocation-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"customlocation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Customlocation Extension\",\n \"version\": \"0.1.2\"\n + \ },\n \"sha256Digest\": \"7dfa4f2231fd4ce0b50eeb5a5e470e1f7e510adb2f8602167157e508dbf84e77\"\n + \ },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/customlocation/customlocation-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"customlocation-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arcplatform-core@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/customlocation-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"customlocation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Customlocation Extension\",\n \"version\": \"0.1.3\"\n + \ },\n \"sha256Digest\": \"5e36435b1a81de25e74e70c45c2ac9f98065138c35050f29210ae40c18484e28\"\n + \ }\n ],\n \"databox\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/databox-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"databox-0.1.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databox\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataBox Extension\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"93cac253cd79728eb333715ae56111ffaa287c9d650e924ea07875ab36906974\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databox-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"databox-0.1.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databox\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databox\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataBox Extension\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"210ab818a566ec69c923c1bc11f8f50295c19c30be378ab67be340a70e921aa1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databox-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"databox-0.1.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databox\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databox\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataBox Extension\",\n \"version\": \"0.1.2\"\n },\n + \ \"sha256Digest\": \"e247449406a189a8e9bbe320b1b4702846cf58da42b5a9b07ffa3e1db01ce6b0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databox-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"databox-0.1.3-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databox\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databox\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataBox Extension\",\n \"version\": \"0.1.3\"\n },\n + \ \"sha256Digest\": \"320e4ae8e3d17c9ca8b6c92ad47b04f20d7530340897d2fcc6e4a4ade0dfa7c2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databox-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"databox-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.48.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/databox\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databox\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Databox Extension.\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"3953bf3f61f2654d4d4cd68ed34b5b8982859222a6e2e8f32581399f1db04a50\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databox-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"databox-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.48.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/databox\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databox\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Databox Extension.\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"7b41a60521d7cf652d4cdca052fc9d2ec6371f3d7884ec0a74ba9a7d5001d7bb\"\n + \ }\n ],\n \"databricks\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExprimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"36130c36c5d4dd7a76952c3d5b443cf2a76447ccce41094e0b625b85139a366a\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExprimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"229272c5b6abcfc37abe86600db356c54ef664b6681b2f8b705aa50be472b1bc\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.3.0\"\n + \ },\n \"sha256Digest\": \"daf76d6aea0025d4783926d25fa813b74c1bcaa67bf8d937cc0d72529d06b9fe\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.4.0\"\n + \ },\n \"sha256Digest\": \"db716fa7a65bfb977ea4d6eb4c5ad56c5dfd39062f0d179c5d3aceff959c2a26\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.5.0-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.5.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.5.0\"\n + \ },\n \"sha256Digest\": \"9a7bca2c8828959ed048b883da9c2b62c1597f5c6bd475c5269c30a27282080f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.6.0-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.6.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.6.0\"\n + \ },\n \"sha256Digest\": \"46a77fcd4b31191ce2b2d58e58af982415ea91787628426bd2b3d567da273411\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.7.0-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.7.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.7.0\"\n + \ },\n \"sha256Digest\": \"236f561c6a20141ae854d1dd64a6e5a0b4636d98517e5ba245401882cc7fbd92\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/databricks-0.7.1-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.7.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databricks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.7.1\"\n + \ },\n \"sha256Digest\": \"f086792f8910601c68fbe303f7831f77c79486fdf8e44039b1505d2344bac197\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-0.7.2-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.7.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databricks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.7.2\"\n + \ },\n \"sha256Digest\": \"daf595a051a47dded0fbe18a289e454f221eaaae11d1aadaa3f45612aff1b05f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-0.7.3-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.7.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databricks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.7.3\"\n + \ },\n \"sha256Digest\": \"b70d79f20b8b2e116df9afc321243d847bbe83db75d863e2e3a00c79bbd0908b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-0.8.0-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.8.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/databricks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.8.0\"\n + \ },\n \"sha256Digest\": \"9abaf70996f462be238438a881f627806d10671897f9b1d562e4caef9e5ad3b1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-0.9.0-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.9.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/databricks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.9.0\"\n + \ },\n \"sha256Digest\": \"d939ba58d20e42bb3a54ae5e801e5f48b8ab797d054844fdbad0fdae429e0dbe\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-0.10.0-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.10.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/databricks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.10.0\"\n + \ },\n \"sha256Digest\": \"619c8b09f85879e805abb4a4d177c2bd9d932be419b5560c1e000d58b6c7e4ef\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-0.10.1-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.10.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/databricks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.10.1\"\n + \ },\n \"sha256Digest\": \"e2f03eaf25331c9697b89b8365ebaa0669bc0022d2e77d6f9363468d00323ebc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-0.10.2-py3-none-any.whl\",\n + \ \"filename\": \"databricks-0.10.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/databricks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"0.10.2\"\n + \ },\n \"sha256Digest\": \"7db0b97b497512671343c472fad2ca7a0987ac2cddc0ae0ceab227e3d017718f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"databricks-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/databricks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"a23ded367e80240eea828a3234801d4d989539ae4a5ecf246bfc6acb054a2544\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"databricks-1.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/databricks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"1.0.1\"\n + \ },\n \"sha256Digest\": \"55165d7435cd7a0dc87587e82fc202d792a5f28c9c44398655b0a4770d038c30\"\n + \ }\n ],\n \"datadog\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/datadog-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"datadog-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.17.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datadog\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datadog\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftDatadogClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"9a5e9535e797f59059d07fcfb4dd456541d0813f97dae344180f76e279265086\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datadog-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"datadog-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.17.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datadog\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datadog\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftDatadogClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"9a38fd5d6d01646f299ee7b5f68e82ad708889c7d0bd72e0b6b6b13e5455e937\"\n + \ }\n ],\n \"datafactory\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/datafactory-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"datafactory-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataFactoryManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"f49b145f8125cde30aedf5080af90e26277ad1527cfb13cff0d72838298241d3\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/datafactory-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"datafactory-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataFactoryManagementClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"7cadaec354c8cbd4eae3465e385685807f619c8e7a2a093e6d4c68a9466b1e6a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"datafactory-0.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataFactoryManagementClient Extension\",\n \"version\": + \"0.2.1\"\n },\n \"sha256Digest\": \"fd9a00c006a44b435d458b3f8523fceeec7e9d3d745cdc037876b8ad2b19ea9f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"datafactory-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataFactoryManagementClient Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"0d68e01c4b7ef9ce6ccf7f2594f3faf19600dbb8ec7d395bc9ad4b4bdab8a245\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"datafactory-0.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataFactoryManagementClient Extension\",\n \"version\": + \"0.4.0\"\n },\n \"sha256Digest\": \"95c6024d8fd35fca5280de274660abb3f249af868c6f5b75c3581df536ff4a13\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-0.5.0-py3-none-any.whl\",\n + \ \"filename\": \"datafactory-0.5.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datafactory\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataFactoryManagementClient Extension\",\n \"version\": + \"0.5.0\"\n },\n \"sha256Digest\": \"5aade65b73ff133eb5442a8420818faf17ed398660c081bd92af87edbc9ab3e6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-0.6.0-py3-none-any.whl\",\n + \ \"filename\": \"datafactory-0.6.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/datafactory\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataFactoryManagementClient Extension\",\n \"version\": + \"0.6.0\"\n },\n \"sha256Digest\": \"c34245db473f35d029c6a794527304aa110f230821386c8687e4a0ce5d03dc61\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-0.7.0-py3-none-any.whl\",\n + \ \"filename\": \"datafactory-0.7.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/datafactory\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataFactoryManagementClient Extension\",\n \"version\": + \"0.7.0\"\n },\n \"sha256Digest\": \"4820123af622fa8961940a33343b4538851fd506b35e100da7154f71e0089a15\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-0.8.0-py3-none-any.whl\",\n + \ \"filename\": \"datafactory-0.8.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/datafactory\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataFactoryManagementClient Extension\",\n \"version\": + \"0.8.0\"\n },\n \"sha256Digest\": \"97c052cfa9084785a474100544da2d0ab8e0f62a41f88a256db6b0ac9fbe4cbb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-0.9.0-py3-none-any.whl\",\n + \ \"filename\": \"datafactory-0.9.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/datafactory\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataFactoryManagementClient Extension\",\n \"version\": + \"0.9.0\"\n },\n \"sha256Digest\": \"797e27ad48820f02b0317be6813ad7bdc592063835b353939803e2445bd4b513\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-0.10.0-py3-none-any.whl\",\n + \ \"filename\": \"datafactory-0.10.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/datafactory\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataFactoryManagementClient Extension\",\n \"version\": + \"0.10.0\"\n },\n \"sha256Digest\": \"2d1443c634da8f365399721af6593b06e9ccb7ebcfa5ae9e9a835790ec61a97a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"datafactory-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/datafactory\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataFactoryManagementClient Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"30941f7e2c093f040c958db024367b750068a5181554b23f7403f4522375c41e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datafactory-1.0.2-py3-none-any.whl\",\n + \ \"filename\": \"datafactory-1.0.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/datafactory\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datafactory\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataFactoryManagementClient Extension\",\n \"version\": + \"1.0.2\"\n },\n \"sha256Digest\": \"ea134e2963b7cdf2bcbd50244a6f1a411da77bd4db7e42c8c8f9651638c82ac7\"\n + \ }\n ],\n \"datamigration\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"datamigration-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datamigration\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataMigrationManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"8e43876ea91c393c01d758cba0d2f6b16964da1d90b74a6370096672186cf055\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"datamigration-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/datamigration\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datamigration\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataMigrationManagementClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"a2013768c643392cb0f702103eb620f98564876c1d8cfb15de4d0760d3f504ca\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"datamigration-0.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datamigration\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataMigrationManagementClient Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"d9775f16fb268da7e3b86dba28d0c57e10a8bc27ef8933370180b1d8819d0642\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.3.1-py3-none-any.whl\",\n + \ \"filename\": \"datamigration-0.3.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datamigration\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataMigrationManagementClient Extension\",\n \"version\": + \"0.3.1\"\n },\n \"sha256Digest\": \"170334f6cad06d78dfa9d8a954394402d5985d804756dfda3623fdc08ec5603a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"datamigration-0.4.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datamigration\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataMigrationManagementClient Extension\",\n \"version\": + \"0.4.0\"\n },\n \"sha256Digest\": \"4be920adebeb6dc05855f4f79566a353e810f702f18ba24066ddf423e5ef8002\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.4.1-py3-none-any.whl\",\n + \ \"filename\": \"datamigration-0.4.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datamigration\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataMigrationManagementClient Extension\",\n \"version\": + \"0.4.1\"\n },\n \"sha256Digest\": \"a8b7f0b094794cf59dcb56b8461e7db4b026061ee6e6885a1e1b78201e9b8404\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.5.0-py3-none-any.whl\",\n + \ \"filename\": \"datamigration-0.5.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datamigration\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataMigrationManagementClient Extension\",\n \"version\": + \"0.5.0\"\n },\n \"sha256Digest\": \"f62423b61052378cd7f0bdc7ba498febf3508f3bf62b5e86974c6bbe0943620f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.6.0-py3-none-any.whl\",\n + \ \"filename\": \"datamigration-0.6.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datamigration\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataMigrationManagementClient Extension\",\n \"version\": + \"0.6.0\"\n },\n \"sha256Digest\": \"a315ae382bf7e723da7b940d96be52b2d70afa4428296f6d4a178bd63b170105\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-0.6.1-py3-none-any.whl\",\n + \ \"filename\": \"datamigration-0.6.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datamigration\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataMigrationManagementClient Extension\",\n \"version\": + \"0.6.1\"\n },\n \"sha256Digest\": \"4a07a5272762f8f53f9fe61b295a800e63c0ea2900a29a526df2eabbe732bca7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"datamigration-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datamigration\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataMigrationManagementClient Extension\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"9d1ac8c7046e23387696561747be2e8f62e879a4a305f8b20ccd19460a29db0d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"datamigration-1.0.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datamigration\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataMigrationManagementClient Extension\",\n \"version\": + \"1.0.0b2\"\n },\n \"sha256Digest\": \"8901b5664a95e665781698bc02ee94b4297c82ac9fdfab99dd4f13bac1c0923e\"\n + \ }\n ],\n \"dataprotection\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dataprotection\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"dataprotection\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-resourcegraph\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools DataProtectionClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"e98056945e1b5a1485c5c7137fa03bc5c482495f43556ee084eeb50f39a45831\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dataprotection\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"dataprotection\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-resourcegraph\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools DataProtectionClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"91286e022f5803d77cd20687d378a438a4560dd6974d814fd34f13ea5f5c8b63\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"dataprotection\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-resourcegraph\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools DataProtectionClient Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"9c85b29bf073c89ecf5424fa2159bca20416142d49ac02e5cf596a1e2cd5ccd0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.4.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"0.4.0\"\n },\n \"sha256Digest\": \"f854ecd79b215fc824e2625ac5995ae8a969fca2c933fba7cde04df8a35e26b7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.5.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.5.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"0.5.0\"\n },\n \"sha256Digest\": \"0f44943c0082b21b3b8c655d092b40a09c21e8bcd46800e962eb97d151c055d5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.6.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.6.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"0.6.0\"\n },\n \"sha256Digest\": \"1284734882f589b86ac87933bbd5f13a0e74b2c745130615636aeeb52690fbb7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.7.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.7.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"0.7.0\"\n },\n \"sha256Digest\": \"79bf91539d0f66c6751c3b43e86715458c7404641396b1ed9454ab3b31968a5b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.8.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.8.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"0.8.0\"\n },\n \"sha256Digest\": \"51f7831accde7b055301ece1db862138ea9016815fdd5ae44c515ae8c6b9dc0a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.8.1-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.8.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.48.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"0.8.1\"\n },\n \"sha256Digest\": \"cb5b43fd00d2376fa8233f99996096c68a1edf20880ec3d7c0a7b8d4b1933c64\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.8.2-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.8.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.48.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"0.8.2\"\n },\n \"sha256Digest\": \"2504dcbb3b4f3b3f1ea948a9284c9fe6d9068ca1b354316f5ed5fe70370a47d1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.9.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.9.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"0.9.0\"\n },\n \"sha256Digest\": \"67f305fa33a5e7cac377f4d25105c538c4023417613869ac6b0fc822fa4cf5b5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.9.1-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.9.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"0.9.1\"\n },\n \"sha256Digest\": \"60c686aa2c5662af12bdda80bb515e23b589db54e815a0af02c35b567a7361ca\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.9.2-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.9.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"0.9.2\"\n },\n \"sha256Digest\": \"9e658d16e259207b25c8312635955433c5635f9f29e7f6b4f602ad66dcdc34d3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.10.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.10.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"0.10.0\"\n },\n \"sha256Digest\": \"b148cf256388f2e1551994bc48e2067d150bf7d3b43fa5c865d48c069029518f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.11.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.11.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"0.11.0\"\n },\n \"sha256Digest\": \"0917171bede4c3742736994a70beca0de11294a03504f969fab961bba25ae841\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.11.1-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.11.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"0.11.1\"\n },\n \"sha256Digest\": \"1348e62ae2ef912de6384bf94159c3c5d85b4bfa14740c7b9c9d194f5f94280e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.11.2-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-0.11.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"0.11.2\"\n },\n \"sha256Digest\": \"ce31a7bb0c939d6eb6d71971f89441abaee172a3ba5b74dae0ebe88e4a8f5300\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"e24770e07716e909216db6e1cf0bf869263b7472949757327acf97dbe7b1e6f5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-1.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"1.1.0\"\n },\n \"sha256Digest\": \"bb3774425d586d03b4e26ffa0021c0024b79227963ec003430e9cd6beaa2cac7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-1.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"1.2.0\"\n },\n \"sha256Digest\": \"2a51a94a99cf4d1be1c873afb82196a72477fe159462f013aec8426ddf7eedcc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-1.3.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-1.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"1.3.0\"\n },\n \"sha256Digest\": \"b782fc885b1d8983507c2597bbac44bf065fbfdf15a6e176929ecd565866be07\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-1.4.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-1.4.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"1.4.0\"\n },\n \"sha256Digest\": \"231c8b8219ed2100d55bbcc4b2dcca7271e36c6715715e1eeca58327ec3ae5b6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-1.5.0-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-1.5.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"1.5.0\"\n },\n \"sha256Digest\": \"5d756d16607364bb98325d2f63580f115a9f8a6bf9c9a74d55c2af2d9a485833\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-1.5.1-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-1.5.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"1.5.1\"\n },\n \"sha256Digest\": \"2089e0c5ce213e0d79148cc2724c28679d93dc70a1e7290ee2ec99e5e0eed513\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-1.5.2-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-1.5.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"1.5.2\"\n },\n \"sha256Digest\": \"534ba81cbfece53352e1862d4bfadc8a5b3fd0449178c482e13fc1925970dac3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-1.5.3-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-1.5.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"1.5.3\"\n },\n \"sha256Digest\": \"4671ce89e39065695f21626350dfcad5438bdbefc714cf35e85ee5eab0f96661\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-1.5.4-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-1.5.4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"1.5.4\"\n },\n \"sha256Digest\": \"bc0c95aefd1db5ed4a8a8130ae2105f2836aac4c0ddd648a0c2fe1c93b9d42d8\"\n + \ }\n ],\n \"datashare\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/datashare-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"datashare-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datashare\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataShareManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"803c3637f752b0fb77eb5272a544abafe44942ff920a020ff7ea179ace329342\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/datashare-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"datashare-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datashare\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataShareManagementClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"c0a2b603c0abd320bc3df0a4d6c38945fd894737804690dad98896e2446763f4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datashare-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"datashare-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datashare\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datashare\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataShareManagementClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"f1a801bd0c38eb2ebf9c2fb4e0b43a98470ae7b40bbcd05eb2aa596d69579c9e\"\n + \ }\n ],\n \"db-up\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.1.13-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.1.13-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.6)\",\n \"mysql-connector-python + (==8.0.13)\",\n \"psycopg2-binary (==2.7.7)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"0.1.13\"\n },\n + \ \"sha256Digest\": \"df397272396c684972d1185e16439159427795b305f67e47fc37447a0c4d1257\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.1.14-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.1.14-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.13)\",\n \"psycopg2-binary (==2.8.5)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"0.1.14\"\n },\n + \ \"sha256Digest\": \"2f456a810be680ccc5dd7658b955410582063d56573ff3c38386d5ba2aacf7ee\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.1.15-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.1.15-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.13)\",\n \"psycopg2-binary (==2.8.5)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"0.1.15\"\n },\n + \ \"sha256Digest\": \"7c8db14999b2b5a4d4b9ae870562505a120896f39c64c20501502f5fdd897911\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.2.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.13)\",\n \"psycopg2-binary (==2.8.5)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"3e5b22cfbe3a0ec63aba3040e541d6819dbb1fbdc5b49286edfd143c79a2b8cb\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/db_up-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.2.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.14)\",\n \"psycopg2-binary (==2.8.5)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"0.2.1\"\n },\n + \ \"sha256Digest\": \"384b3806d49973cc91688ced691785d83cd7c3557016edc9161c151262ae2ab5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.2.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.14)\",\n \"psycopg2-binary (==2.8.5)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"0.2.2\"\n },\n + \ \"sha256Digest\": \"1b5f67a7f0e0ed8e26fe86d226e697a4a5832fc9e7d72b19b9142cc06f6569c3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.2.3-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.14)\",\n \"psycopg2-binary (==2.8.5)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"0.2.3\"\n },\n + \ \"sha256Digest\": \"127f777b123c5829e728aef0e4bb0998d680d37510a1b402fec8caa233e5fdd8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.2.4-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.14)\",\n \"psycopg2-binary (==2.8.5)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"0.2.4\"\n },\n + \ \"sha256Digest\": \"7a891fe1ac06ac3df982a2b3cfd7be2ada8ac23e5a18763472d429c5f2c049a6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.2.5-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.14)\",\n \"psycopg2-binary (==2.9.1)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"0.2.5\"\n },\n + \ \"sha256Digest\": \"ad178a11840ae7874bce84b3d55efda6c69325caeb6e86d0267d37fc8e56ab6e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.2.6-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.14)\",\n \"psycopg2-binary (==2.9.1)\",\n + \ \"pymssql (==2.2.2)\"\n ]\n + \ }\n ],\n \"summary\": + \"Additional commands to simplify Azure Database workflows.\",\n \"version\": + \"0.2.6\"\n },\n \"sha256Digest\": \"d629a42206cc7bc436f8c1595058966fc50ad4d40bd9b818e8ef950d2ca7c205\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.2.7-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.14)\",\n \"psycopg2-binary (==2.9.1)\",\n + \ \"pymssql (~=2.2.4)\"\n ]\n + \ }\n ],\n \"summary\": + \"Additional commands to simplify Azure Database workflows.\",\n \"version\": + \"0.2.7\"\n },\n \"sha256Digest\": \"3a3fa10842fbc8fffe5d20bc2fd078e21020f814d22a1e5e67923088d6629837\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.2.8-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.14)\",\n \"psycopg2-binary (==2.9.1)\",\n + \ \"pymssql (==2.2.7)\"\n ]\n + \ }\n ],\n \"summary\": + \"Additional commands to simplify Azure Database workflows.\",\n \"version\": + \"0.2.8\"\n },\n \"sha256Digest\": \"c6be92c911449937f04a95d0f4619aa4b63b4d6f43bac87124a2671da74ff550\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-0.2.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-0.2.9-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.14)\",\n \"psycopg2-binary (~=2.9.6)\",\n + \ \"pymssql (==2.2.7)\"\n ]\n + \ }\n ],\n \"summary\": + \"Additional commands to simplify Azure Database workflows.\",\n \"version\": + \"0.2.9\"\n },\n \"sha256Digest\": \"f700b75e4a127d6111134e7af5068a6d6c379c8e6ce591a1e20ae31adc766c36\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-1.0.0b1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"Cython==0.29.17\",\n + \ \"mysql-connector-python (==8.0.14)\",\n \"mysql-connector-python==8.0.14\",\n + \ \"psycopg2-binary (~=2.9.6)\",\n \"psycopg2-binary~=2.9.6\",\n + \ \"pymssql (==2.2.7)\",\n \"pymssql==2.2.7\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"162a88040f8361c787a84698b4eb3850c3b4262dd9053f8dfb6bf4636a870e46\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-1.0.0b2-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-1.0.0b2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"Cython==0.29.17\",\n + \ \"mysql-connector-python (==8.0.14)\",\n \"mysql-connector-python==8.0.14\",\n + \ \"psycopg2-binary (~=2.9.6)\",\n \"psycopg2-binary~=2.9.6\",\n + \ \"pymssql (==2.2.7)\",\n \"pymssql==2.2.7\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"1.0.0b2\"\n },\n + \ \"sha256Digest\": \"3086dfa710fbb9c372148c1829cee0cdf47c89f4f1d9cd0e0d1f8c0b42e85646\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-1.0.0b3-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-1.0.0b3-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"Cython==0.29.17\",\n + \ \"mysql-connector-python (==8.0.14)\",\n \"mysql-connector-python==8.0.14\",\n + \ \"psycopg2-binary (~=2.9.6)\",\n \"psycopg2-binary~=2.9.6\",\n + \ \"pymssql (==2.2.7)\",\n \"pymssql==2.2.7\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"1.0.0b3\"\n },\n + \ \"sha256Digest\": \"4d660a65749c5db769a973aadd6b9a7b3e65c4472345357847a6b6a06fbf11ad\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-1.0.0b4-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-1.0.0b4-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"Cython==0.29.17\",\n + \ \"mysql-connector-python (==8.0.14)\",\n \"mysql-connector-python==8.0.14\",\n + \ \"psycopg2-binary (~=2.9.6)\",\n \"psycopg2-binary~=2.9.6\",\n + \ \"pymssql (==2.2.7)\",\n \"pymssql==2.2.7\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"1.0.0b4\"\n },\n + \ \"sha256Digest\": \"1a18c78b29fc58a2f3ca537d16f213bd4a879df1c8689df439c8013bef453f73\"\n + \ }\n ],\n \"deidservice\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/deidservice-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"deidservice-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/deidservice\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"deidservice\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Deidservice Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"149c39f352f3acb95cb6d33bd0fb9627032cf01a1aa320acb9dd712744597cd0\"\n + \ }\n ],\n \"deploy-to-azure\": [\n {\n + \ \"downloadUrl\": \"https://github.com/Azure/deploy-to-azure-cli-extension/releases/download/20200318.1/deploy_to_azure-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"deploy_to_azure-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.60\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"VSTS_Social@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/deploy-to-azure-cli-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"deploy-to-azure\",\n \"summary\": \"Deploy to Azure using + Github Actions.\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"f925080ee7abc3aef733d4c6313170bdedaa9569af1b95427383bc3c59e4ceb8\"\n + \ }\n ],\n \"desktopvirtualization\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/desktopvirtualization-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"desktopvirtualization-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/desktopvirtualization\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"desktopvirtualization\",\n \"summary\": \"Microsoft Azure + Command-Line Tools DesktopVirtualizationAPIClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"d73c88fe0df98871a221495e000c39fbb22975fdc5066668c9ea0f578ff9a1a9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/desktopvirtualization-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"desktopvirtualization-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/desktopvirtualization\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"desktopvirtualization\",\n \"summary\": \"Microsoft Azure + Command-Line Tools DesktopVirtualizationAPIClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"8f35a96234e9c456b81f3dd086c6d7f20a9c49104cb3b277357aa9d697a02b0e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/desktopvirtualization-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"desktopvirtualization-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/desktopvirtualization\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"desktopvirtualization\",\n \"summary\": \"Microsoft Azure + Command-Line Tools DesktopVirtualizationAPIClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"6de28d6be58dd65ad8f25a9fa084676c54684f00f9938f5db7d0392282783e04\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/desktopvirtualization-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"desktopvirtualization-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/desktopvirtualization\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"desktopvirtualization\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Desktopvirtualization Extension.\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"3a1e7a8f0e579fa21fed770859b21c23bec8b8489d834a61411695a9a90c7cd4\"\n + \ }\n ],\n \"dev-spaces\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/dev_spaces-1.0.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"dev_spaces-1.0.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.1.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azds-azcli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dev-spaces\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dev-spaces\",\n \"summary\": \"Dev Spaces provides a + rapid, iterative Kubernetes development experience for teams.\",\n \"version\": + \"1.0.6\"\n },\n \"sha256Digest\": \"71041808b27cd9d33fd905c5080c97f61291816f2dddd6dcdb2e66b9fb6ebf59\"\n + \ }\n ],\n \"devcenter\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"devcenter-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"devcenter\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DevCenter Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"418eb5c05e8f6597adf253c580e501e6bde925260603f5283680212c5063e549\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"devcenter-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tm-azurefidalgo@microsoft.com\",\n + \ \"name\": \"DevCenter\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"devcenter\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DevCenter Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"e220902d40257c4124654b0026eb682fe4c51f0dff6e406539359b9adc4be43b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"devcenter-0.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tm-azurefidalgo@microsoft.com\",\n + \ \"name\": \"DevCenter\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"devcenter\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DevCenter Extension\",\n \"version\": \"0.1.2\"\n + \ },\n \"sha256Digest\": \"7957288ab151cca2945f0c26f76c5aab25df4d410342e056c34c5e41f9aec1e1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"devcenter-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.48.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tm-azurefidalgo@microsoft.com\",\n + \ \"name\": \"DevCenter\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"devcenter\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DevCenter Extension\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"6072ff771ea62c74363883aa35ca2b744a37c87365ee0fa3946cb28213a3b59a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"devcenter-1.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.48.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tm-azurefidalgo@microsoft.com\",\n + \ \"name\": \"DevCenter\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"devcenter\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DevCenter Extension\",\n \"version\": \"1.0.1\"\n + \ },\n \"sha256Digest\": \"5306e7a8f24a2fcaaeb58753f40fe31bd55a0c7cdc00e0b7f9cf2bf9006deaed\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-1.0.2-py3-none-any.whl\",\n + \ \"filename\": \"devcenter-1.0.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.48.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tm-azurefidalgo@microsoft.com\",\n + \ \"name\": \"DevCenter\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"devcenter\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DevCenter Extension\",\n \"version\": \"1.0.2\"\n + \ },\n \"sha256Digest\": \"f4b9f94aa0f7548fe6f44027ea02f6a0f7d0e46c051b2eb4e0afee7fce16e68c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-2.0.0-py3-none-any.whl\",\n + \ \"filename\": \"devcenter-2.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.48.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tm-azurefidalgo@microsoft.com\",\n + \ \"name\": \"DevCenter\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"devcenter\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DevCenter Extension\",\n \"version\": \"2.0.0\"\n + \ },\n \"sha256Digest\": \"de2705aff9fb4fb8a64895dcab9992b14d02dfdda36e5be47dcb3e13ef6c913f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-3.0.0-py3-none-any.whl\",\n + \ \"filename\": \"devcenter-3.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tm-azurefidalgo@microsoft.com\",\n + \ \"name\": \"DevCenter\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"devcenter\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DevCenter Extension\",\n \"version\": \"3.0.0\"\n + \ },\n \"sha256Digest\": \"20179a4d03df5fc4811d4f6e177c54b157a02fe46aee6e2c1e27d31c774220fc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-4.0.0-py3-none-any.whl\",\n + \ \"filename\": \"devcenter-4.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tm-azurefidalgo@microsoft.com\",\n + \ \"name\": \"DevCenter\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"devcenter\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DevCenter Extension\",\n \"version\": \"4.0.0\"\n + \ },\n \"sha256Digest\": \"d3e0ed56945cd9cee0b0b7474a9db2222a1c0f74160a51c7aaa8d34b53e08467\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-4.0.1-py3-none-any.whl\",\n + \ \"filename\": \"devcenter-4.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tm-azurefidalgo@microsoft.com\",\n + \ \"name\": \"DevCenter\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"devcenter\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DevCenter Extension\",\n \"version\": \"4.0.1\"\n + \ },\n \"sha256Digest\": \"bc220fb55979c5c38d6ed92281d63c07ab4c376edb5632dcd949c14fa49a3186\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-5.0.0-py3-none-any.whl\",\n + \ \"filename\": \"devcenter-5.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tm-azurefidalgo@microsoft.com\",\n + \ \"name\": \"DevCenter\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"devcenter\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DevCenter Extension\",\n \"version\": \"5.0.0\"\n + \ },\n \"sha256Digest\": \"873ce4ec274710a361ba2a6bf93d8820949d955bf4386881d9a37ed87bb0d054\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-5.0.1-py3-none-any.whl\",\n + \ \"filename\": \"devcenter-5.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tm-azurefidalgo@microsoft.com\",\n + \ \"name\": \"DevCenter\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"devcenter\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DevCenter Extension\",\n \"version\": \"5.0.1\"\n + \ },\n \"sha256Digest\": \"f90caa530ef9a11d0e4706b94a860edca419205d4a528dab72859dd6d7870b9c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-6.0.0-py3-none-any.whl\",\n + \ \"filename\": \"devcenter-6.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tm-azurefidalgo@microsoft.com\",\n + \ \"name\": \"DevCenter\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"devcenter\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DevCenter Extension\",\n \"version\": \"6.0.0\"\n + \ },\n \"sha256Digest\": \"1331bb5b734b235112663719512170e141f93ad990a4c09503839c707f117493\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/devcenter-6.0.1-py3-none-any.whl\",\n + \ \"filename\": \"devcenter-6.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"Programming Language :: Python + :: 3.10\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tm-azurefidalgo@microsoft.com\",\n + \ \"name\": \"DevCenter\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/devcenter\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"devcenter\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DevCenter Extension\",\n \"version\": \"6.0.1\"\n + \ },\n \"sha256Digest\": \"25e3dcdc9cb83243ceb2ed6a6dedc227953c06cb610ba95c84ddec0f7503224f\"\n + \ }\n ],\n \"diskpool\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/diskpool-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"diskpool-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/diskpool\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"diskpool\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StoragePoolManagement Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"2afc595664b0fc616e62f8de28cebbca72d8f27dff02a8ed8cfff58dd62d571f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/diskpool-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"diskpool-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/diskpool\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"diskpool\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StoragePoolManagement Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"d65e6f09c39461b78f052eec22eaf239b1d988aa63f3927470b74d28d0b2f95b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/diskpool-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"diskpool-0.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/diskpool\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"diskpool\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StoragePoolManagement Extension\",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"3ffe1291c8c7132a9caf77e66105027ae8a980c92ad757b0195c3f51090c3e6a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/diskpool-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"diskpool-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/diskpool\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"diskpool\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StoragePoolManagement Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"9ae6aaea85a17529da2a4e51c2ba2aba55b4b26816d5618eafd0f9fdc43b67b7\"\n + \ }\n ],\n \"dms-preview\": [\n {\n \"downloadUrl\": + \"https://azcliorcas.blob.core.windows.net/azclipath/dms_preview-0.11.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"dms_preview-0.11.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.43\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arpavlic@microsoft.com\",\n + \ \"name\": \"Artyom Pavlichenko\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dms-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dms-preview\",\n \"summary\": \"Support for new Database + Migration Service scenarios.\",\n \"version\": \"0.11.0\"\n + \ },\n \"sha256Digest\": \"ef19e5c19976506a8f8910ec04bc785ebeffb5a4c8764047e4e4d42f812b0845\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/dms_preview-0.12.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"dms_preview-0.12.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.43\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arpavlic@microsoft.com\",\n + \ \"name\": \"Artyom Pavlichenko\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dms-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dms-preview\",\n \"summary\": \"Support for new Database + Migration Service scenarios.\",\n \"version\": \"0.12.0\"\n + \ },\n \"sha256Digest\": \"5e2fd9a8e413fd13a280fbba9964658a5569af2e49e802bd12116ec01e5dd0ae\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dms_preview-0.13.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"dms_preview-0.13.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.43\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arpavlic@microsoft.com\",\n + \ \"name\": \"Artyom Pavlichenko\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dms-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dms-preview\",\n \"summary\": \"Support for new Database + Migration Service scenarios.\",\n \"version\": \"0.13.0\"\n + \ },\n \"sha256Digest\": \"c7d127332825d5f93c83ecfb3c46e9415e3cb0e4cee2c953287918b02757bc0c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dms_preview-0.14.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"dms_preview-0.14.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.43\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arpavlic@microsoft.com\",\n + \ \"name\": \"Artyom Pavlichenko\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dms-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dms-preview\",\n \"summary\": \"Support for new Database + Migration Service scenarios.\",\n \"version\": \"0.14.0\"\n + \ },\n \"sha256Digest\": \"77680dfecb50e2a017314ff2b5f2e0340fec73f225b41f5668abc561aed088cd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dms_preview-0.15.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"dms_preview-0.15.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"arpavlic@microsoft.com\",\n + \ \"name\": \"Artyom Pavlichenko\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dms-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dms-preview\",\n \"summary\": \"Support for new Database + Migration Service scenarios.\",\n \"version\": \"0.15.0\"\n + \ },\n \"sha256Digest\": \"556c145c03b8d529d8e77f7b35702fb8de382891635e858f928117f33688ee9c\"\n + \ }\n ],\n \"dnc\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/dnc-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"dnc-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dnc\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dnc\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DNC Extension\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"5398ed171b49fe0d27307caec0f6bf2f6310da0b877b5f3b6d8a0fd6e7f50cbe\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dnc-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"dnc-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dnc\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dnc\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DNC Extension\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"7d34527aec383a227d1183eea2ecb9d9aaa0642acf9ef206c2f3e6aab72d86b3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dnc-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"dnc-0.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dnc\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dnc\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DNC Extension\",\n \"version\": \"0.1.2\"\n },\n + \ \"sha256Digest\": \"fa59bf6e597c17a93f3b8c4390f34629b86c8301c74974e5168d99d8dc464892\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dnc-0.1.3-py3-none-any.whl\",\n + \ \"filename\": \"dnc-0.1.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/dnc\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dnc\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DNC Extension\",\n \"version\": \"0.1.3\"\n },\n + \ \"sha256Digest\": \"237f362908d8deda9f797fb619226cb5a33c3e1c8740e37b3b24db53ddb76c74\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dnc-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"dnc-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dnc\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dnc\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Dnc Extension.\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"3c58a81f60b49ab7fc0cbe4950cef1ec847788aaa2c2d24cf345ee11b9f0d450\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dnc-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"dnc-0.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dnc\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dnc\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Dnc Extension.\",\n \"version\": \"0.2.1\"\n },\n + \ \"sha256Digest\": \"e38474ca9b28bed5dde388cf73dff9e3504825032b03c5bf8930c25caf292026\"\n + \ }\n ],\n \"dns-resolver\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/dns_resolver-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"dns_resolver-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dns-resolver\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dns-resolver\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DnsResolverManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"4537129127c2e4efc69909c5769753d3f8213d5e3eef9c4d42282d4e011905d8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dns_resolver-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"dns_resolver-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.39.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dns-resolver\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dns-resolver\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DnsResolverManagementClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"1c4bb8216e509c2f08fa75c45930ec377768326f30cb9ab125842aa9352c6e2e\"\n + \ }\n ],\n \"durabletask\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/durabletask-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"durabletask-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/durabletask\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"durabletask\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Durabletask Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"d7a929b294928df79d8312fbf6af72c5d928e304c4a7b37daf3ff772667dfb25\"\n + \ }\n ],\n \"dynatrace\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/dynatrace-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"dynatrace-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.41.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dynatrace\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dynatrace\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Dynatrace Extension.\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"112a7e423461d1b6f7c385fe8b73b4f2b850e2570c35a54a4bbcc2e87afec661\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dynatrace-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"dynatrace-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dynatrace\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dynatrace\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Dynatrace Extension.\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"81a08ebad9d9305fc96f58030fe1336553c46150ebd9cdb9febbe050baa4664c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dynatrace-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"dynatrace-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dynatrace\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dynatrace\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Dynatrace Extension.\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"091f40d8764245bcb9667e422d4dd372114c9f00a72a080f9c8ef92b43c518d6\"\n + \ }\n ],\n \"edgeorder\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/edgeorder-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"edgeorder-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/edgeorder\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"edgeorder\",\n \"summary\": \"Microsoft Azure Command-Line + Tools EdgeOrderManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"186a06d0f8603f7e0faeed5296ecc73bf1096e0d681acea42d5ebccc1670357b\"\n + \ }\n ],\n \"edgezones\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/edgezones-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"edgezones-1.0.0b1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/edgezones\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"edgezones\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Edgezones Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"98f1b962dcbb078cfb8cd12d40a58d01bcc37db441570f84e293ba0ba52c6c08\"\n + \ }\n ],\n \"elastic\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/elastic-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"elastic-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/elastic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"elastic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftElastic Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"bcc9f3d37aa7a73a57899873c1f4ed3baa7d5d80e98f8ac74cdbc993ea939215\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/elastic-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"elastic-1.0.0b1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/elastic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"elastic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftElastic Extension\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"7e3bac2488c82cfc6a0809643be222cb4d765b65ddef760b04e1bfef6bf653b6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/elastic-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"elastic-1.0.0b2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/elastic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"elastic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftElastic Extension\",\n \"version\": \"1.0.0b2\"\n + \ },\n \"sha256Digest\": \"1d99dbcc10b99185b4cd9b64a8835d80b424226e5cf5d40b3e3ae1d435532657\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/elastic-1.0.0b3-py3-none-any.whl\",\n + \ \"filename\": \"elastic-1.0.0b3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/elastic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"elastic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftElastic Extension\",\n \"version\": \"1.0.0b3\"\n + \ },\n \"sha256Digest\": \"2f3ae430d3c34dd4007c8c5a8374963568cc23558872464242811cc5a26e2de7\"\n + \ }\n ],\n \"elastic-san\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/elastic_san-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"elastic_san-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.40.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/elastic-san\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"elastic-san\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ElasticSan Extension.\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"eda91cb50484637810d1aa9177affbe4bb2008ef1072497414ddcc4cde558fdf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/elastic_san-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"elastic_san-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.50.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/elastic-san\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"elastic-san\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ElasticSan Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"61e661066fdbcab54335f028748a81b6dd45d48a41c86ab99cbf69386181eb08\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/elastic_san-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"elastic_san-1.0.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/elastic-san\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"elastic-san\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ElasticSan Extension.\",\n \"version\": \"1.0.0b2\"\n + \ },\n \"sha256Digest\": \"6d2f1247ae78e431d4834989df581cd21241d16b97071bf672fb8b71ee3ad702\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/elastic_san-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"elastic_san-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/elastic-san\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"elastic-san\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ElasticSan Extension.\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"f7665c05f0e14785d15b199cd798f3f91b55bc974d5f438957dd7b36690da6c2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/elastic_san-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"elastic_san-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/elastic-san\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"elastic-san\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ElasticSan Extension.\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"aba0ea3f82a551b98a797bce90df3e580493bbeb9a19fb4dc3dac20bdae92f34\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/elastic_san-1.2.0b1-py3-none-any.whl\",\n + \ \"filename\": \"elastic_san-1.2.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/elastic-san\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"elastic-san\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ElasticSan Extension.\",\n \"version\": \"1.2.0b1\"\n + \ },\n \"sha256Digest\": \"52fb72b1dc50b134ce964488edec554c7d8449f841e47d8b355d9f1ac710ce60\"\n + \ }\n ],\n \"eventgrid\": [\n {\n \"downloadUrl\": + \"https://eventgridcliextension.blob.core.windows.net/cli/eventgrid-0.4.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"eventgrid-0.4.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ahamad@microsoft.com\",\n + \ \"name\": \"Ashraf Hamad.\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"eventgrid\",\n \"summary\": \"Microsoft Azure Command-Line + Tools EventGrid Command Module.\",\n \"version\": \"0.4.4\"\n + \ },\n \"sha256Digest\": \"c91ac92ab27a7127c9def51e096f749986b57acf209b357eaf1494d3dbfb33f9\"\n + \ },\n {\n \"downloadUrl\": \"https://eventgridcliextension.blob.core.windows.net/cli/eventgrid-0.4.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"eventgrid-0.4.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"rgrandhi@microsoft.com\",\n + \ \"name\": \"Ramesh Grandhi.\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"eventgrid\",\n \"summary\": \"Microsoft Azure Command-Line + Tools EventGrid Command Module.\",\n \"version\": \"0.4.6\"\n + \ },\n \"sha256Digest\": \"6ef9f9cf895b5dcdf9a38c2490a0c81e8254de4302dc7139fb6a4fcf2203318d\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/eventgrid-0.4.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"eventgrid-0.4.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ahamad@microsoft.com\",\n + \ \"name\": \"Ashraf Hamad.\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"eventgrid\",\n \"summary\": \"Microsoft Azure Command-Line + Tools EventGrid Command Module.\",\n \"version\": \"0.4.7\"\n + \ },\n \"sha256Digest\": \"f1bff60574d25ccc04eb2038081771b626651d144d9ab01be2b7410e1b02f56a\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/eventgrid-0.4.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"eventgrid-0.4.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ahamad@microsoft.com\",\n + \ \"name\": \"Ashraf Hamad.\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"eventgrid\",\n \"summary\": \"Microsoft Azure Command-Line + Tools EventGrid Command Module.\",\n \"version\": \"0.4.8\"\n + \ },\n \"sha256Digest\": \"8f307569c920e1b75d4b6dfb47ad80c0cd49bf54a3a65139b57edff8a4776d45\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/eventgrid-0.4.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"eventgrid-0.4.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.49\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ahamad@microsoft.com\",\n + \ \"name\": \"Ashraf Hamad.\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"eventgrid\",\n \"summary\": \"Microsoft Azure Command-Line + Tools EventGrid Command Module.\",\n \"version\": \"0.4.9\"\n + \ },\n \"sha256Digest\": \"1682f61dbb8350611dfeb1f2486158732264eeb35e22af8d7daf39839a720839\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/eventgrid-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"eventgrid-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ahamad@microsoft.com\",\n + \ \"name\": \"Ashraf Hamad.\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/eventgrid\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"eventgrid\",\n \"summary\": \"Microsoft Azure Command-Line + Tools EventGrid Command Module.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"662ca2a381efcf821a16648ff3b89edbe21f4e9887e18ffa7ee0dbbaf0332ede\"\n + \ }\n ],\n \"express-route-cross-connection\": [\n + \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/express_route_cross_connection-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"express_route_cross_connection-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.41\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/express-route-cross-connection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"express-route-cross-connection\",\n \"summary\": \"Manage + customer ExpressRoute circuits using an ExpressRoute cross-connection.\",\n + \ \"version\": \"0.1.1\"\n },\n \"sha256Digest\": + \"b83f723baae0ea04557a87f358fa2131baf15d45cd3aba7a9ab42d14ec80df38\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/express_route_cross_connection-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"express_route_cross_connection-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/express-route-cross-connection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"express-route-cross-connection\",\n \"summary\": \"Microsoft + Azure Command-Line Tools ExpressRouteCrossConnection Extension.\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"c7599b77f636f01718a847fe4f5ad970e1d3f30aeaf559d69c27f0f6b06797cd\"\n + \ }\n ],\n \"firmwareanalysis\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/firmwareanalysis-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"firmwareanalysis-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.55.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/firmwareanalysis\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"firmwareanalysis\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Firmwareanalysis Extension.\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"1c3df1441de76edb08bed05ac279dd2b02bd6fab68a0b9a495dfd7ecce3e92cb\"\n + \ }\n ],\n \"fleet\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"fleet-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.37.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"d3f3a3ac441de4c52684ad3afb55fa7008d2796b226139be11fb73f314ef2207\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"fleet-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.39.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"b885481b31de89103b7ceb94770bdbb561f9ad086574ba68b09bd53e5f9e08ed\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"fleet-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.39.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"bbcad15099156a964fcfe102670b7b75531da74de29b960518b868ab78d4f45f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"fleet-0.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.39.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"0.2.1\"\n },\n + \ \"sha256Digest\": \"880d6a3596534a1f06c7d98d8e14030f43d5e6194430705b9261d31262f01f73\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-0.2.2-py3-none-any.whl\",\n + \ \"filename\": \"fleet-0.2.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"0.2.2\"\n },\n + \ \"sha256Digest\": \"7f52b16d4e2d2b8e97be00fa20b1c1756d439c771de294664e0ff4efefdd5c27\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-0.2.3-py3-none-any.whl\",\n + \ \"filename\": \"fleet-0.2.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"0.2.3\"\n },\n + \ \"sha256Digest\": \"cdefbe422d0787803f35a8ae9fb7f64ab911a674855bd442df61b26f8b3f8fc7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-0.2.4-py3-none-any.whl\",\n + \ \"filename\": \"fleet-0.2.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"0.2.4\"\n },\n + \ \"sha256Digest\": \"2db0908b72d78c62b826ce24bd8b9f1a7ad8ebe56a8b94c6e687103e147f22f3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-0.2.6-py3-none-any.whl\",\n + \ \"filename\": \"fleet-0.2.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"0.2.6\"\n },\n + \ \"sha256Digest\": \"42c5dba49c7740f19315334f598bcef206222ea3e7cf8e43efc6f4a1d9131de4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-0.2.7-py3-none-any.whl\",\n + \ \"filename\": \"fleet-0.2.7-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"0.2.7\"\n },\n + \ \"sha256Digest\": \"ffb469e8d94f55507a56742cc432fcf17cfe286bb016a683015e0ca95fcdf72f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"fleet-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"0.3.0\"\n },\n + \ \"sha256Digest\": \"d86415fc9ee7bab9835ee34f1bc526fb411b0225cd055acdf3bf2f92ed9b6c8d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"faa616540c78cf2f5a5b50668d9dcf446ef4fd42ba6b791e4e3d7a6e538dfbd8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"1.0.1\"\n },\n + \ \"sha256Digest\": \"6c083a77e26293d51b3d4063cbaa2e6c3d5dace142278bbf36474015c58a21bf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.0.2-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.0.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"1.0.2\"\n },\n + \ \"sha256Digest\": \"ed2594f6deb93be770f9d0ae9379260795ae4e3da323d300ad88f1be0764f70b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.0.3-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.0.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"1.0.3\"\n },\n + \ \"sha256Digest\": \"cd93b819d0a8c1ab50f4aec00b31623fd01040362c4cd633a89ba03fc894eb73\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.0.4-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.0.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"1.0.4\"\n },\n + \ \"sha256Digest\": \"2aac868e3dd298759f38bb941105b031fa6a5d6d9c2b72d0c1467045115e2c41\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.0.5-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.0.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"1.0.5\"\n },\n + \ \"sha256Digest\": \"dca1261a36ae06aa4d6a61b2c070f56c0a2bedff6023e2063bad8b678456cb26\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"1.1.0\"\n },\n + \ \"sha256Digest\": \"aef2ad74e99cdd5c0adacffc2470b5807c2e8ffb6405709f41a07dc8ea53c850\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.1.1-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"1.1.1\"\n },\n + \ \"sha256Digest\": \"36b85eba90e306593595955c8663426f0c9e377719d179b0a2118b97403c3651\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.1.2-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"1.1.2\"\n },\n + \ \"sha256Digest\": \"d0d2cf188da6a2f72ebc335d1ff82827c84a4965e23188e3408c85b90e2131dc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"1.2.0\"\n },\n + \ \"sha256Digest\": \"6e9504f22893636a14990955bfb731e77a2f681b100f2cb20cc2455ce15a2b8b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.2.1-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"1.2.1\"\n },\n + \ \"sha256Digest\": \"d7e3525249c0c4e5ae0988500e36847b4363d734f7b16e7a0f9a9e54623081ae\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.2.2-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.2.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"1.2.2\"\n },\n + \ \"sha256Digest\": \"76bd826b8200e6fa955cc4db8ad66b64af156cb6cb1690e5f1af7dba1cbb3b58\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.3.0-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"1.3.0\"\n },\n + \ \"sha256Digest\": \"411fbf4bef6f1495218f03907a2157e7d269bfa7da966c99b73627d1c96c95ff\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.4.0-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"1.4.0\"\n },\n + \ \"sha256Digest\": \"1d83a9000c879ff1a9a2bff2ea23183ab61e342713dfedb662345593b1658438\"\n + \ }\n ],\n \"fluid-relay\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/fluid_relay-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"fluid_relay-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.39.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fluid-relay\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fluid-relay\",\n \"summary\": \"Microsoft Azure Command-Line + Tools FluidRelay Extension.\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"9217666f8134a38e09aeda905e7cc83994332a5ab563ec8935b9ff6c91563e8c\"\n + \ }\n ],\n \"footprint\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/footprint-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"footprint-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/footprint\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"footprint\",\n \"summary\": \"Microsoft Azure Command-Line + Tools FootprintMonitoringManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"69b0e9a19682f12c67af509071177e442349e1e2ae2f07f1e15d5a3f4136aa95\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/footprint-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"footprint-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/footprint\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"footprint\",\n \"summary\": \"Microsoft Azure Command-Line + Tools FootprintMonitoringManagementClient Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"4aa59288bf46cfd68519f1f7f63d3e33af16d80632b84c283cc7152129260b2c\"\n + \ }\n ],\n \"front-door\": [\n {\n \"downloadUrl\": + \"https://azurecliafd.blob.core.windows.net/azure-cli-extension/front_door-1.0.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.68\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.2\"\n },\n + \ \"sha256Digest\": \"a009045bab5dec0dfcd9715e2993ed0fa7a59b4bc6633d388415f482ed9cbc46\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.68\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.3\"\n },\n + \ \"sha256Digest\": \"e483de77921937c210e03ed32e161d0384f162c8b253bd03fe8da1927b4160d7\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.68\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.4\"\n },\n + \ \"sha256Digest\": \"49f509e8b56f4a1ef1870bac7273376df5e7fbfe1c25e10cf236e9448d66683c\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.5-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.5\"\n },\n + \ \"sha256Digest\": \"cd55a87740de19cbd66444bdb398fd4a64115aeff92d52d2704a19ea2f083c60\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.6-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.6\"\n },\n + \ \"sha256Digest\": \"fbf965d7146884a87f481138dc06153dc95fd486f9dfeb40c1f11ce4667e203e\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.7-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.7-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.7\"\n },\n + \ \"sha256Digest\": \"9a97ac67c089d1e3a753fa55fa80e44b8f8a89bcae42442c19e34b035ae96231\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.8-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.8-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.8\"\n },\n + \ \"sha256Digest\": \"ccc7b5eba917945af589fed41dd6435eb1fe96385ae0a80c1b3bbb4db03b77a5\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/front_door-1.0.9-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.9-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.9\"\n },\n + \ \"sha256Digest\": \"064aa0c647e0dd320fd1eba50257387fd27e125838a2cf5b58121cc1c5eefc45\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.11-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.11-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.11\"\n },\n + \ \"sha256Digest\": \"7f9ea186e512e6a81f3199a18cd19b5065cf9f17faedacd2936e24350ee7be14\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.12-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.12-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.12\"\n },\n + \ \"sha256Digest\": \"89e7bbdb13a1afbccd285e9ae8868176cb990632eb85ce1202f23eb5b32f5e80\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.13-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.13-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.13\"\n },\n + \ \"sha256Digest\": \"cc22cdd23bae7f03121c04910a02536bba7e685183fb747499d4d355135bb57c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.14-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.14-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.14\"\n },\n + \ \"sha256Digest\": \"bca02f32e3a322de8cf29be1a2c255897ede3a34ee620dcc1871f1dbb6019ff1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.15-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.15-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.15\"\n },\n + \ \"sha256Digest\": \"8673a26f16f0d5b96f217d69f1f2c7588105c56c7e5e53c9a1f6f36b7d9edcff\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.16-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.16-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.16\"\n },\n + \ \"sha256Digest\": \"49727e1a4e61e74763c3905e4b9b5cfee8baa3ef4be628ccb6cf7e6a8d08ce1b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.0.17-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.0.17-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.68\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.0.17\"\n },\n + \ \"sha256Digest\": \"20996a4d864963451572b71fecf4906f3e7fe8f403a651a1d1e98363df63d095\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.1.0\"\n },\n + \ \"sha256Digest\": \"9772792c3aac8738592bafa04965a27bc1131512d06f1023fdf663154070a3e7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.1.1-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.1.1\"\n },\n + \ \"sha256Digest\": \"3f3dd05dd0fce357dd0c7c6ba886a7f1bb37096a0d2d5dc0decf057431819ea4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/front_door-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"front_door-1.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/front-door\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"front-door\",\n \"summary\": \"Manage networking Front + Doors.\",\n \"version\": \"1.2.0\"\n },\n + \ \"sha256Digest\": \"232ba7b2cd24240d4e86d820e5fa78a11143b3a624ed953a3451210500edfbe0\"\n + \ }\n ],\n \"functionapp\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/functionapp-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"functionapp-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"grzuber@microsoft.com\",\n \"name\": + \"Graham Zuber\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/functionapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"functionapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-functions-devops-build (~=0.0.22)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands for Azure Functions.\",\n + \ \"version\": \"0.1.0\"\n },\n \"sha256Digest\": + \"0de3812d31b3581a333e64e32807cae7ca734a6d369180bfe21b91ee3ea105ed\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/functionapp-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"functionapp-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"grzuber@microsoft.com\",\n \"name\": + \"Graham Zuber\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/functionapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"functionapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-functions-devops-build (~=0.0.22)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands for Azure Functions.\",\n + \ \"version\": \"0.1.1\"\n },\n \"sha256Digest\": + \"9b49a2bf31e2183a122e9a8b83c782e3f7b5d1db5a5df9037219b52dec8aedaf\"\n }\n + \ ],\n \"fzf\": [\n {\n \"downloadUrl\": + \"https://pahealyfzf.blob.core.windows.net/fzf/fzf-1.0.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"fzf-1.0.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.isPreview\": + false,\n \"azext.maxCliCoreVersion\": \"2.99.0\",\n \"azext.minCliCoreVersion\": + \"2.9.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"patrick.healy@microsoft.com\",\n + \ \"name\": \"Patrick W. Healy\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/phealy/azure-cli-fzf\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fzf\",\n \"summary\": \"Microsoft Azure Command-Line + Tools fzf Extension\",\n \"version\": \"1.0.2\"\n },\n + \ \"sha256Digest\": \"84abeed03b4bbfa7b8c0be08d9366ff3040e2160df4f5a539f0e1c9e0a1c359c\"\n + \ }\n ],\n \"gallery-service-artifact\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/gallery_service_artifact-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"gallery_service_artifact-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"team-josrom@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/gallery-service-artifact\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"gallery-service-artifact\",\n \"summary\": \"Microsoft + Azure Command-Line Tools GalleryServiceArtifact Extension.\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"3f30e3e8e7e678fd9ab91b2261fb918a303cd382626509d3f00e86f1967750c6\"\n + \ }\n ],\n \"graphservices\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/graphservices-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"graphservices-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/graphservices\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"graphservices\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Graphservices Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"8aeda3901e944b038f4e812b0b7099798d2bd82d55e03e785017a504c14583e5\"\n + \ }\n ],\n \"guestconfig\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/guestconfig-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"guestconfig-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/guestconfig\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"guestconfig\",\n \"summary\": \"Microsoft Azure Command-Line + Tools GuestConfigurationClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"0cf21ef88d49458157dae77e5bb25dfdfff8c12e76d15a19d468b408f4ab61c5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/guestconfig-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"guestconfig-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/guestconfig\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"guestconfig\",\n \"summary\": \"Microsoft Azure Command-Line + Tools GuestConfigurationClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"94836a5d21ee1071cd40b163d2c80c32a6a81b9dc85d91371f7e4fb35141e273\"\n + \ }\n ],\n \"hack\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/hack-0.4.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"hack-0.4.3-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"chrhar@microsoft.com\",\n \"name\": \"Christopher + Harrison\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/hack\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hack\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Hack Extension\",\n \"version\": \"0.4.3\"\n },\n + \ \"sha256Digest\": \"f9e600457e3a9fffc3235a7b30176d9f0a7f4d39ac01ea3e2668bcbdee6398a6\"\n + \ }\n ],\n \"hardware-security-modules\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/hardware_security_modules-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"hardware_security_modules-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hardware-security-modules\",\n \"summary\": \"Microsoft + Azure Command-Line Tools AzureDedicatedHSMResourceProvider Extension\",\n + \ \"version\": \"0.1.0\"\n },\n \"sha256Digest\": + \"dafa526a4bce243940432e91f6f28d2254bdcc1a90eaa0f097493f9d79a23b36\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/hardware_security_modules-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"hardware_security_modules-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/hardware-security-modules\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hardware-security-modules\",\n \"summary\": \"Microsoft + Azure Command-Line Tools AzureDedicatedHSMResourceProvider Extension\",\n + \ \"version\": \"0.2.0\"\n },\n \"sha256Digest\": + \"ac4a10e2cc64a4d0818e48ffbcddfeb4307dd56b8875bc01c02687d473c9fe9b\"\n }\n + \ ],\n \"hdinsightonaks\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/hdinsightonaks-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"hdinsightonaks-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/hdinsightonaks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hdinsightonaks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Hdinsightonaks Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"566c30d67d6b524ac25f77342121e0e7a6ed4ab0af561fcc6e94b0629a03f40c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/hdinsightonaks-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"hdinsightonaks-1.0.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/hdinsightonaks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hdinsightonaks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Hdinsightonaks Extension.\",\n \"version\": \"1.0.0b2\"\n + \ },\n \"sha256Digest\": \"c323291952f9ec6014af5f760b26860bd8029aa04cc226fd5996f20726641c59\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/hdinsightonaks-1.0.0b3-py3-none-any.whl\",\n + \ \"filename\": \"hdinsightonaks-1.0.0b3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/hdinsightonaks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hdinsightonaks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Hdinsightonaks Extension.\",\n \"version\": \"1.0.0b3\"\n + \ },\n \"sha256Digest\": \"f549b85107b7b83ff64fcfa5c90a5d7e900a5ea2efe76eec9b1f81689e58c365\"\n + \ }\n ],\n \"healthbot\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/healthbot-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"healthbot-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthbot\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"healthbot\",\n \"summary\": \"Microsoft Azure Command-Line + Tools HealthbotClient Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"9134fad2511516e714a5db346d63865af0badf0599ade3f1c15faca0055585a3\"\n + \ }\n ],\n \"healthcareapis\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"healthcareapis-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"healthcareapis\",\n \"summary\": \"Microsoft Azure Command-Line + Tools HealthCareApis Extension\",\n \"version\": \"0.1.3\"\n + \ },\n \"sha256Digest\": \"2bc0f7c9642cb0afe682218761205d2b7ffe842a397fd679ad462506f2846ce0\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"healthcareapis-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"healthcareapis\",\n \"summary\": \"Microsoft Azure Command-Line + Tools HealthcareApisManagementClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"460655a4287a7e4ecf69fac32c95628df9ce776a802f061a81f54f7d89aca0ba\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"healthcareapis-0.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthcareapis\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"healthcareapis\",\n \"summary\": \"Microsoft Azure Command-Line + Tools HealthcareApisManagementClient Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"6dcb79765e87026db4f6e09f4a85e9d6a523fb9928a5586c3cb5e16cc1e1f3be\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.3.1-py3-none-any.whl\",\n + \ \"filename\": \"healthcareapis-0.3.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthcareapis\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"healthcareapis\",\n \"summary\": \"Microsoft Azure Command-Line + Tools HealthcareApisManagementClient Extension\",\n \"version\": + \"0.3.1\"\n },\n \"sha256Digest\": \"c1804f41528fdfb2ccc355a3a7e28c961fb1a783c767d855b886db0483897e33\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.3.2-py3-none-any.whl\",\n + \ \"filename\": \"healthcareapis-0.3.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthcareapis\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"healthcareapis\",\n \"summary\": \"Microsoft Azure Command-Line + Tools HealthcareApisManagementClient Extension\",\n \"version\": + \"0.3.2\"\n },\n \"sha256Digest\": \"950fcd15946023adb8e2d7f7eb7d8a856ccf497f0ec2265225ece0df3663c285\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.3.3-py3-none-any.whl\",\n + \ \"filename\": \"healthcareapis-0.3.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthcareapis\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"healthcareapis\",\n \"summary\": \"Microsoft Azure Command-Line + Tools HealthcareApisManagementClient Extension\",\n \"version\": + \"0.3.3\"\n },\n \"sha256Digest\": \"0a19a8d24aa9676a6ed141c7199696af6d784662f68d576c423707a82d4ff2d2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.3.4-py3-none-any.whl\",\n + \ \"filename\": \"healthcareapis-0.3.4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/healthcareapis\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"healthcareapis\",\n \"summary\": \"Microsoft Azure Command-Line + Tools HealthcareApisManagementClient Extension\",\n \"version\": + \"0.3.4\"\n },\n \"sha256Digest\": \"d19fd5392f54db314a0be4db52dc2092d0cd802c7353e6c40cccfd31958fa320\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/healthcareapis-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"healthcareapis-0.4.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/healthcareapis\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"healthcareapis\",\n \"summary\": \"Microsoft Azure Command-Line + Tools HealthcareApisManagementClient Extension\",\n \"version\": + \"0.4.0\"\n },\n \"sha256Digest\": \"a25d7d57d4fd3adcc37581d0acc1d6c6a46dcd0351933ed37cfba9d1abd60978\"\n + \ }\n ],\n \"hpc-cache\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"hpc_cache-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hpc-cache\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageCache Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"0961683cd21f09622399f54b62389fc5d529f861c2280c4751ae977c83da9ae0\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"hpc_cache-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hpc-cache\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageCache Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"16f3648054ccadb1d8e3110ac7febd238f1583b1c559cd19395096e9b7588be4\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"hpc_cache-0.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/hpc-cache\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hpc-cache\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageCache Extension\",\n \"version\": \"0.1.2\"\n + \ },\n \"sha256Digest\": \"6ca5b80e7c705bca73ec1ecfc791d82721fa19d12e4449be4d27933901a9e471\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"hpc_cache-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/hpc-cache\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hpc-cache\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageCache Extension\",\n \"version\": \"0.1.3\"\n + \ },\n \"sha256Digest\": \"8c03e7450a4dc7eb28b271037053caec7530e430aef801d6e1223adc9228083e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"hpc_cache-0.1.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/hpc-cache\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hpc-cache\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageCache Extension\",\n \"version\": \"0.1.4\"\n + \ },\n \"sha256Digest\": \"2babc06382b75b3afa92d61a6e66a6d7f01878168e687ca62903c16bed782285\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/hpc_cache-0.1.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"hpc_cache-0.1.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/hpc-cache\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hpc-cache\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageCache Extension\",\n \"version\": \"0.1.5\"\n + \ },\n \"sha256Digest\": \"852cb417aadf0ad07e3c51413858c413bf71ea6cb49ba58289d9572f9a350507\"\n + \ }\n ],\n \"hybridaks\": [\n {\n \"downloadUrl\": + \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/hybridaks-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"hybridaks-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.32.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://dev.azure.com/msazure/msk8s/_git/hybridaks-utils\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"hybridaks\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"arcproxyutilities (==1.0.2)\",\n \"kubernetes + (==11.0.0)\",\n \"pycryptodome (==3.12.0)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools HybridContainerService + Extension\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"7f6b82638c7f6fe675d31f3df8fcc82f6ecb651d74c2f8b1bcd0c5fe5d3477fb\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/hybridaks-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"hybridaks-0.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.32.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://dev.azure.com/msazure/msk8s/_git/hybridaks-utils\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"hybridaks\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"arcproxyutilities (==1.0.2)\",\n \"kubernetes + (==11.0.0)\",\n \"pycryptodome (==3.12.0)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools HybridContainerService + Extension\",\n \"version\": \"0.2.1\"\n },\n + \ \"sha256Digest\": \"d7998850327419509bcd099168c20be6c65c9d14c927ed8adcde315802a05ba3\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/hybridaks-0.2.2-py3-none-any.whl\",\n + \ \"filename\": \"hybridaks-0.2.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.32.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://dev.azure.com/msazure/msk8s/_git/hybridaks-utils\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"hybridaks\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"arcproxyutilities (==1.0.2)\",\n \"kubernetes + (==11.0.0)\",\n \"pycryptodome (==3.12.0)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools HybridContainerService + Extension\",\n \"version\": \"0.2.2\"\n },\n + \ \"sha256Digest\": \"adb5a274d9788aebca3086faa48dcbef5ef0871c9f6b3c16ace48f62f230bcfb\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/hybridaks-0.2.3-py3-none-any.whl\",\n + \ \"filename\": \"hybridaks-0.2.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.32.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://dev.azure.com/msazure/msk8s/_git/hybridaks-utils\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"hybridaks\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"kubernetes==11.0.0\",\n + \ \"pycryptodome (==3.12.0)\",\n \"pycryptodome==3.12.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools HybridContainerService + Extension\",\n \"version\": \"0.2.3\"\n },\n + \ \"sha256Digest\": \"1a18b7b682f4249223f78341d4a9778ccf97fcf4443aa98483408f97888e03b8\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/hybridaks-0.2.4-py3-none-any.whl\",\n + \ \"filename\": \"hybridaks-0.2.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.32.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://dev.azure.com/msazure/msk8s/_git/hybridaks-utils\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"hybridaks\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"kubernetes (==11.0.0)\",\n \"kubernetes==11.0.0\",\n + \ \"pycryptodome (==3.12.0)\",\n \"pycryptodome==3.12.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools HybridContainerService + Extension\",\n \"version\": \"0.2.4\"\n },\n + \ \"sha256Digest\": \"48a1c1dea8995c377d6d93abff330c39d1f134fd7028d46c34cb02615b0ff2b4\"\n + \ }\n ],\n \"image-copy-extension\": [\n {\n + \ \"downloadUrl\": \"https://files.pythonhosted.org/packages/48/6f/7fa75dfa7c015c0b58f18473b4aa8d565be8606d9740d4442b32b17df913/image_copy_extension-0.2.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_copy_extension-0.2.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.24\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"tamir.kamara@microsoft.com\",\n \"name\": + \"Tamir Kamara\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-copy-extension\",\n \"summary\": \"Support for + copying managed vm images between regions\",\n \"version\": + \"0.2.3\"\n },\n \"sha256Digest\": \"8a88c2600f9dad5f38ca6128ab8efaa38a974fbb7fe8c875fc50b7bb7d37bd54\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_copy_extension-0.2.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.24\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tamir.kamara@microsoft.com\",\n + \ \"name\": \"Tamir Kamara\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-copy-extension\",\n \"summary\": \"Support for + copying managed vm images between regions\",\n \"version\": + \"0.2.4\"\n },\n \"sha256Digest\": \"174e2437b20a979257a93017209ba1ff5d1969ea1eca7f3cbe57e8d11c75f4f4\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_copy_extension-0.2.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.24\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tamir.kamara@microsoft.com\",\n + \ \"name\": \"Tamir Kamara\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-copy-extension\",\n \"summary\": \"Support for + copying managed vm images between regions\",\n \"version\": + \"0.2.5\"\n },\n \"sha256Digest\": \"14216b9664365a03ccd6d2cb469a32ab1e38f1d1e9b2735d27725cdc5300b148\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_copy_extension-0.2.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.24\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tamir.kamara@microsoft.com\",\n + \ \"name\": \"Tamir Kamara\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-copy-extension\",\n \"summary\": \"Support for + copying managed vm images between regions\",\n \"version\": + \"0.2.6\"\n },\n \"sha256Digest\": \"69cc6fac34625677c94fb276dc97caca8769295db51dc480da4b194a0ec94720\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_copy_extension-0.2.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.24\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tamir.kamara@microsoft.com\",\n + \ \"name\": \"Tamir Kamara\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-copy-extension\",\n \"summary\": \"Support for + copying managed vm images between regions\",\n \"version\": + \"0.2.7\"\n },\n \"sha256Digest\": \"565cf4411a6b12d2940365a7d4d578422709a2c38f95a253e5f6e82ab9bd6bdd\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_copy_extension-0.2.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.24\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tamir.kamara@microsoft.com\",\n + \ \"name\": \"Tamir Kamara\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/image-copy\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-copy-extension\",\n \"summary\": \"Support for + copying managed vm images between regions\",\n \"version\": + \"0.2.8\"\n },\n \"sha256Digest\": \"b57f554b77e68d414b9f79016311a3e5c180f76206557909319edcad9ada5240\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_copy_extension-0.2.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.24\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tamir.kamara@microsoft.com\",\n + \ \"name\": \"Tamir Kamara\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/image-copy\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-copy-extension\",\n \"summary\": \"Support for + copying managed vm images between regions\",\n \"version\": + \"0.2.9\"\n },\n \"sha256Digest\": \"2ed4710d1e30aa0c21c5e5bbc92d971c0ef325f602ba36698f90663497f3cfbb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_copy_extension-0.2.10-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.24\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tamir.kamara@microsoft.com\",\n + \ \"name\": \"Tamir Kamara\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/image-copy\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-copy-extension\",\n \"summary\": \"Support for + copying managed vm images between regions\",\n \"version\": + \"0.2.10\"\n },\n \"sha256Digest\": \"005ddd130d3f45d47d9dfed948a8c390e79df9b64043c26e52494987dda3969b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.11-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_copy_extension-0.2.11-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.24\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tamir.kamara@microsoft.com\",\n + \ \"name\": \"Tamir Kamara\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/image-copy\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-copy-extension\",\n \"summary\": \"Support for + copying managed vm images between regions\",\n \"version\": + \"0.2.11\"\n },\n \"sha256Digest\": \"3c4a93131c2e792ca79aab9382e7f70abff8c9c27b299071a27eb59ae9708993\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.12-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_copy_extension-0.2.12-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.24\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tamir.kamara@microsoft.com\",\n + \ \"name\": \"Tamir Kamara\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/image-copy\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-copy-extension\",\n \"summary\": \"Support for + copying managed vm images between regions\",\n \"version\": + \"0.2.12\"\n },\n \"sha256Digest\": \"d45db946ccca399f618ffd9f36bfa97147ee33490f5cb41bbd192060f2bb6dcd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_copy_extension-0.2.13-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_copy_extension-0.2.13-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.24\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"tamir.kamara@microsoft.com\",\n + \ \"name\": \"Tamir Kamara\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/image-copy\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-copy-extension\",\n \"summary\": \"Support for + copying managed vm images between regions\",\n \"version\": + \"0.2.13\"\n },\n \"sha256Digest\": \"b0d12bf3c74500790d58d99a6c32562548712cb872b7942e8ad481e270521b19\"\n + \ }\n ],\n \"image-gallery\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/image_gallery-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_gallery-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-gallery\",\n \"summary\": \"Support for Azure Image + Gallery\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"e7939c407eebea41a5c98d094f29428d40efcb8b73330e113304af35a3631971\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_gallery-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_gallery-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-gallery\",\n \"summary\": \"Support for Azure Image + Gallery\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"b2741a832f5955b53d2899eb332bb0a2df1462ec310ea1dee89e11ff041d1ac4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_gallery-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_gallery-0.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-gallery\",\n \"summary\": \"Support for Azure Image + Gallery\",\n \"version\": \"0.1.2\"\n },\n + \ \"sha256Digest\": \"41dfa1cda5be37acd0c2236bd8febae31a117e99d2c267fb3a76f50b6ba0aa1c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/image_gallery-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"image_gallery-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/image-gallery\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"image-gallery\",\n \"summary\": \"Support for Azure Image + Gallery\",\n \"version\": \"0.1.3\"\n },\n + \ \"sha256Digest\": \"6260c1f4bfb589d2ba0569317358a149caabbbd49a048e69328e44871694aacd\"\n + \ }\n ],\n \"import-export\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/import_export-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"import_export-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"import-export\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageImportExport Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"6a5a1a1a23c7ff90e01b1f0a33d04874d750845e6cda56badce4ce99a518ef55\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/import_export-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"import_export-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"import-export\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageImportExport Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"0680948362e12138c9582e68e471533482749bd660bfe3c8c2a4d856e90927b0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/import_export-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"import_export-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/import-export\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"import-export\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageImportExport Extension\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"c4e36f1003031a67615a45cd12592bf5c11c54b7bd957f6c2af90efcb5c517b2\"\n + \ }\n ],\n \"informatica\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/informatica-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"informatica-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/informatica\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"informatica\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Informatica Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"6166ae91c78e74c01af3bd1ead2d62832707e176ea0f7d5d30a5dd485f482462\"\n + \ }\n ],\n \"init\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/init-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"init-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/init\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"init\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Init Extension\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"1177fc293dc118b449b761ec2c728d39755fc3939de8d4bfd89cce1bfb218e86\"\n + \ }\n ],\n \"interactive\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/interactive-0.4.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"interactive-0.4.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.0.61\",\n \"azext.minCliCoreVersion\": + \"2.0.50.dev0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"interactive\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"prompt-toolkit (~=1.0.15)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Interactive Shell\",\n \"version\": + \"0.4.1\"\n },\n \"sha256Digest\": \"22b940493972b77c62606b0ae3c834283209d8619bb740e69dd115530a328e3b\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/interactive-0.4.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"interactive-0.4.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"interactive\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"prompt-toolkit (~=1.0.15)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Interactive Shell\",\n \"version\": + \"0.4.3\"\n },\n \"sha256Digest\": \"ba78a45ec9753a42e1e805dc9cf3b309df264c6201dfd1dabcc6c00b22599fe8\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/interactive-0.4.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"interactive-0.4.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"interactive\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"prompt-toolkit (~=1.0.15)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Interactive Shell\",\n \"version\": + \"0.4.4\"\n },\n \"sha256Digest\": \"1e66bc1f117fac90f320c072a08f527b8570f5a6725670a1fb4d05f2c7eb7a31\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/interactive-0.4.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"interactive-0.4.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"interactive\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"prompt-toolkit (~=1.0.15)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Interactive Shell\",\n \"version\": + \"0.4.5\"\n },\n \"sha256Digest\": \"9dc4b78b10065603501f2ef7124847cbdac013fca6c00e2684b1d1f702ffcbc4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/interactive-0.4.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"interactive-0.4.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/interactive\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"interactive\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"prompt-toolkit (~=1.0.15)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Interactive Shell\",\n \"version\": + \"0.4.6\"\n },\n \"sha256Digest\": \"0890ac49a0db5d781786b80777547d0388683f4eb4a58d9bb6680ac63871763c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/interactive-0.5.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"interactive-0.5.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/interactive\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"interactive\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"prompt-toolkit (~=1.0.15)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Interactive Shell\",\n \"version\": + \"0.5.0\"\n },\n \"sha256Digest\": \"97f90de55c70452f8d3dfd83a6c3b018eb7a6d1dfaa5021b756cf4ca1633db91\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/interactive-0.5.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"interactive-0.5.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/interactive\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"interactive\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"prompt-toolkit (~=1.0.15)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Interactive Shell\",\n \"version\": + \"0.5.1\"\n },\n \"sha256Digest\": \"1000a418cd2e1038a9fae0b342d848f2191cc17b9b23e6c9f27ba6f4e51e147c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/interactive-0.5.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"interactive-0.5.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/interactive\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"interactive\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"prompt-toolkit (~=1.0.15)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Interactive Shell\",\n \"version\": + \"0.5.2\"\n },\n \"sha256Digest\": \"215a7daebb7f42a16b339445b8c60db07cac7dd368b421089c13472bc7b2c335\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/interactive-0.5.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"interactive-0.5.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/interactive\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"interactive\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"prompt-toolkit (~=1.0.15)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Interactive Shell\",\n \"version\": + \"0.5.3\"\n },\n \"sha256Digest\": \"95f056f9a459fb83e36cc332eb00ba3d4ac07386b3f813f620dc530ceeeb32cf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/interactive-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"interactive-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/interactive\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"interactive\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"prompt-toolkit (~=1.0.15)\",\n \"prompt_toolkit~=1.0.15\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Interactive + Shell\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"08ebc70e1bec8a010431894c43684714ace35fb5b0764c1f4fd89deb3f928fbc\"\n + \ }\n ],\n \"internet-analyzer\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/internet_analyzer-0.1.0rc5-py2.py3-none-any.whl\",\n + \ \"filename\": \"internet_analyzer-0.1.0rc5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"internet-analyzer\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Internet Analyzer Extension\",\n \"version\": + \"0.1.0rc5\"\n },\n \"sha256Digest\": \"7e5ee753abece69fb917f3a96be4a3d8117ffbbbd75d18c2e54c74c0fe2b952e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/internet_analyzer-0.1.0rc6-py2.py3-none-any.whl\",\n + \ \"filename\": \"internet_analyzer-0.1.0rc6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/internet-analyzer\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"internet-analyzer\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Internet Analyzer Extension\",\n \"version\": + \"0.1.0rc6\"\n },\n \"sha256Digest\": \"0708d9f598d1618d138eebcf18354d97c7b3a2c90570959df077e04d419d32c3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/internet_analyzer-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"internet_analyzer-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/internet-analyzer\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"internet-analyzer\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Internet Analyzer Extension\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"4564881a7c90bacfd881c629a4182398007c886d099ea88db97e1ff10053a5c4\"\n + \ }\n ],\n \"ip-group\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/ip_group-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"ip_group-0.1.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"ip-group\",\n \"summary\": \"Microsoft Azure Command-Line + Tools IpGroup Extension\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"477d7f58fe44a4ecb0ced3497262d7ccd8bb7677d70582b6fccf645e91d25ad4\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ip_group-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"ip_group-0.1.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"ip-group\",\n \"summary\": \"Microsoft Azure Command-Line + Tools IpGroup Extension\",\n \"version\": \"0.1.2\"\n },\n + \ \"sha256Digest\": \"afba2d8a8a612863b63f504d6cff6d559610b961e4c77dc2fd49b9fe03ec67a2\"\n + \ }\n ],\n \"k8s-configuration\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.9.8)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"80b79b09d9caa8e1813dad25703c442aec35e01d60a3ea13389ebaec3e94933c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.9.8)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.1.0\"\n },\n \"sha256Digest\": \"2ca4d1e87dfa0614592b758d3441bfeaaa85e4d151b734ce27cc74c6a400edec\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.1.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.9.8)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.1.1\"\n },\n \"sha256Digest\": \"3edf6b977d911b4da52ed66ada9363a7a6a739773a26f3599a2fdc728adcce9c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.9.8)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.2.0\"\n },\n \"sha256Digest\": \"145c09df2e45ac41b6471fe74a513720014943151b5ca67e9913a1a91d591ac6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.3.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.9.8)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.3.0\"\n },\n \"sha256Digest\": \"c403947012efe91407ffb3e8edaf3fc6775519b1930c36bb4a04c11c2a3de3ab\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.4.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.4.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.9.8)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.4.0\"\n },\n \"sha256Digest\": \"877af811d8ee5fb8f282faefd159b7c61cbc0de6410ef43d54872e217a68747f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.4.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.4.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.9.8)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.4.1\"\n },\n \"sha256Digest\": \"827006d9e0b453fbf318e09bdea7403f715f517796646476b4f621b5830597c0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.5.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.5.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.9.8)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.5.0\"\n },\n \"sha256Digest\": \"240ec430dc52af32a03450707a9734d29f7077c9961f7d1ebc871891f3f2d906\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.5.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.5.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.14.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.5.1\"\n },\n \"sha256Digest\": \"bf697ea1cb07d7792ba8cbadb677797398b9a818ffad2c5b979eecb5d7740ea7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.6.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.6.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.14.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.6.0\"\n },\n \"sha256Digest\": \"9f1e8f692a3a7e53dfc356a5d65593f76485cad43a20098566fee910b13abca2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-1.7.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-1.7.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.14.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": + \"1.7.0\"\n },\n \"sha256Digest\": \"66c3bda7d25cae39d1d5ab9076f8fa64fdc955910ada7a8032a1756ab1f549e4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-2.0.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-2.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.14.1)\",\n \"pycryptodome~=3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-configuration + Extension\",\n \"version\": \"2.0.0\"\n },\n + \ \"sha256Digest\": \"1abb112abe603757a324c6eb0aaa602692aca07bb7470d6237111eaea4a0faec\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-2.1.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-2.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.21.0)\",\n \"pycryptodome~=3.21.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-configuration + Extension\",\n \"version\": \"2.1.0\"\n },\n + \ \"sha256Digest\": \"1bca1108a53b1b097ba2caab0abd5d40edfd6913e6034be77b6afc2968954bda\"\n + \ }\n ],\n \"k8s-extension\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"fce51e9eccace013cbdac4a38c4bccf71a24aeed04cc6af68adb9bdb268a0787\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.2.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.2.1\"\n + \ },\n \"sha256Digest\": \"dcf1efff249be93fdf6a1504975294c1ada2c888f20d97bc51411aed4eb6ba1a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.3.0\"\n + \ },\n \"sha256Digest\": \"f8c2c922fa229a20d3ecf1ae1572bd6b73e6f7e52f0a13647d20a18abc257ed1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.3.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.3.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.3.1\"\n + \ },\n \"sha256Digest\": \"77e0dea5831e33ac88a6485deca56b233ce4e29c39e6fd1765b405b421b7b3b5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.4.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.4.0\"\n + \ },\n \"sha256Digest\": \"5987336827718cc5a2aefbee33226cc66574b5767644f8fd48016883a2e9f997\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.4.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.4.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.4.1\"\n + \ },\n \"sha256Digest\": \"10d2318f7998c5bfee637141ab89581a974893a0f062d9dc55ae5c2cc9f9b4ab\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.4.2-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.4.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.4.2\"\n + \ },\n \"sha256Digest\": \"aabdf00aa0cabddb142ef829e487d1b33c716ad498a4eee29389fd889e1f30d1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.4.3-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.4.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.4.3\"\n + \ },\n \"sha256Digest\": \"67dc73f1e12d5e0084963a73c4a8f4e3adc06785f3ab51c5e0ee1f801fbca0d4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.5.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.5.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-extension\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pyhelm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8s-extension Extension\",\n \"version\": + \"0.5.0\"\n },\n \"sha256Digest\": \"82bb4f809cc5b6fe6b998e78adf6ca3b5b50de02f998c180441d9d66e7cc4875\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.5.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.5.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.5.1\"\n + \ },\n \"sha256Digest\": \"b04378d1c1699cf8cf37fc84a0f77fd5b87c653cc4d06049ba546660ce57fe42\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.6.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.6.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.6.0\"\n + \ },\n \"sha256Digest\": \"a1b642402345b71cb0f06aa31653a3161ab3f5f874e29d59863b987200bc535d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.6.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.6.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.6.1\"\n + \ },\n \"sha256Digest\": \"42b366184ab6dd9f46bb44e7c0e10eace4f25f514f97dd1912552c6900f2fd9e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.7.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.7.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.7.0\"\n + \ },\n \"sha256Digest\": \"8721d18318523e58de9bec2630b713c1c860f910ee1f9d05f80dbc6fd178f9ca\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.7.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-0.7.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.24.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"0.7.1\"\n + \ },\n \"sha256Digest\": \"f1360a4c39efb470184c16d4b69273a46225bd86b9c4a463fcdd3ecbaddafc4e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"039cd89acff0e63516a7235c2587f4e06a750b9f9d3e94a5399de21c17964cd0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.0.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.0.1\"\n + \ },\n \"sha256Digest\": \"6f6ecdffa02759bacd523a9804e2c7e9e96603f3de57c62ba609b3bdb6c2a3ad\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.0.2-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.0.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.0.2\"\n + \ },\n \"sha256Digest\": \"4e911e5b1c750700a0ac713fd3ec3cac97778ade4cb4d2cecf1342200f766851\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.0.3-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.0.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.0.3\"\n + \ },\n \"sha256Digest\": \"0a37d5c8c098a1624be18beef43c6ec5c472f237486e08ebf60245dd9e3c5286\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.0.4-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.0.4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.0.4\"\n + \ },\n \"sha256Digest\": \"248b883ec7518f5db53de32d6516d358062d4703b5d958a34b2c723eb3a5b8f4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"c5b48df58d454f3d154711b1184af5737455dbc7af8deaacef884be307026cbd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.2.0\"\n + \ },\n \"sha256Digest\": \"bf92e1df8eee418aa7be48466b6d6138e930b25287fa1f9fe1d7334173d63e69\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.2.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.2.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.2.1\"\n + \ },\n \"sha256Digest\": \"e65628ffceba2a4f26ba024bf1e46599731cda5286f234e81a1259f027f75df4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.2.2-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.2.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.2.2\"\n + \ },\n \"sha256Digest\": \"d214fe2383a30fc1cb8476c38a525ccf1aada2eb613503074e99dbda1dafc79c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.2.3-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.2.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.2.3\"\n + \ },\n \"sha256Digest\": \"c012f662fd51ea183674efb16bb794c40338f948f84444c983fb78140b63a461\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.2.4-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.2.4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.2.4\"\n + \ },\n \"sha256Digest\": \"0ca9dcc073a16fff7b536ad8de737caf6a06a1fcb33fa1b538327c2b488ec978\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.2.5-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.2.5-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.2.5\"\n + \ },\n \"sha256Digest\": \"ee4af7d478a28482012cd83376e4145354d1930844f08b14bb1f9f4a7e9e2832\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.2.6-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.2.6-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.2.6\"\n + \ },\n \"sha256Digest\": \"35ebc35a808c52780526feb012ccbe4915d67c4f8d3ddfd7a62da0710c507c68\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.3.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.3.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.3.1\"\n + \ },\n \"sha256Digest\": \"c6231d4bf4f05b5e9f169ddc8dd278113b4c8dcedb3506684641f09d1dfb36ce\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.3.2-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.3.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.3.2\"\n + \ },\n \"sha256Digest\": \"f081a5501ade1d6aa9eb62b3fb58de78adb614031c6bbd48b1d8c2af0af1197a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.3.3-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.3.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.3.3\"\n + \ },\n \"sha256Digest\": \"f8f0a6519fc42829e8cb0d32b28e2f462306e23ac810fa1651165f457b357ccb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.3.4-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.3.4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.3.4\"\n + \ },\n \"sha256Digest\": \"db83a5d0d23c2ce3d2059070ec576014d55548fe56e8afe4aaa0ee51eff5369f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.3.5-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.3.5-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.3.5\"\n + \ },\n \"sha256Digest\": \"14e1f4d18aad44ec13b823431e7b916751345e45e1dd2d88c78f059794c953f9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.3.6-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.3.6-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.3.6\"\n + \ },\n \"sha256Digest\": \"0f576d0c27d25d092dfc6cc1aa2c5400e7249d732ae102fdee3feb92a9e80b6c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.3.7-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.3.7-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.3.7\"\n + \ },\n \"sha256Digest\": \"6b13d83f0ce086c56d68c26f6611785794e384423d40a6c636a606258e6adc32\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.3.8-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.3.8-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.3.8\"\n + \ },\n \"sha256Digest\": \"83c256f2d0fe27de40ac1ccb1f45e714cd32d38f209df8f71556c7ce712eb61c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.3.9-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.3.9-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.3.9\"\n + \ },\n \"sha256Digest\": \"076beb20efe4840f8d62f2ecdc227eb67ee396a55a5788210ad6402cf1a6e9c4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.4.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.4.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.4.0\"\n + \ },\n \"sha256Digest\": \"2c2884897cba23c860c1a06a6db9004fc320c9636996fd207f0565797df6b06d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.4.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.4.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.4.1\"\n + \ },\n \"sha256Digest\": \"e48c8c6b91b3d69ac485be9273b3e47e92c2054385936107a793035bb1292e02\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.4.2-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.4.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.4.2\"\n + \ },\n \"sha256Digest\": \"af6aa03158a6a075c63a3ae89c860df980e89d78d613c9b7ad8ed9a92e726eea\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.4.3-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.4.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.24.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.4.3\"\n + \ },\n \"sha256Digest\": \"a388796ad467016b71b0020ddc5a2ee1e9ebe51a41d6394dda5402e19b58abbd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.4.5-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.4.5-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.4.5\"\n + \ },\n \"sha256Digest\": \"9952c0a41cff1ae16899d715e40efff6239d0b93e3141f7df5863b9fe21eded8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.5.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.5.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.5.0\"\n + \ },\n \"sha256Digest\": \"977612e77348bae69403a59196e3e3abf3bbfd35fb723621511f3cddc915015d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.5.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.5.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.5.1\"\n + \ },\n \"sha256Digest\": \"7adf0f2ff97350b2c49c974bd01fc8dc1af6f152adb24b64b7b4e6e9d008acbf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.5.2-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.5.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.5.2\"\n + \ },\n \"sha256Digest\": \"372c8b9aa07b6cdd6a0aa07b60633e64cfccf7172ab5b4c27e6856de91d55634\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.5.3-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.5.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.5.3\"\n + \ },\n \"sha256Digest\": \"a1ada1ffe739e8ac33a4f600495d4f9fca4ded04ffb315d419b3c22551196eeb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.6.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.6.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.6.0\"\n + \ },\n \"sha256Digest\": \"27a9996a9ace11856f37719ae697f0ac98d368dde6eb8648d111aafc136599a7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.6.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.6.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.6.1\"\n + \ },\n \"sha256Digest\": \"41861d65b9d86e0b622986a4984ce7a611f87b92da578db8c0527ec74334f32c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.6.2-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.6.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.6.2\"\n + \ },\n \"sha256Digest\": \"852da7bac7cb55017cc843e05f5a70ea3b92e95dde2592cfe892fed51e350a8f\"\n + \ }\n ],\n \"k8s-runtime\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_runtime-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_runtime-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.55.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-runtime\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-runtime\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-kubernetesconfiguration (>=3.1.0)\",\n + \ \"azure-mgmt-kubernetesconfiguration>=3.1.0\",\n + \ \"azure-mgmt-resourcegraph (>=8.0.0)\",\n + \ \"azure-mgmt-resourcegraph>=8.0.0\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8sRuntime Extension.\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"05ac43e50cdfbafc5175f058189552644328667025c84dbea08243dceede4d4f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_runtime-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"k8s_runtime-1.0.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-runtime\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-runtime\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-kubernetesconfiguration (>=3.1.0)\",\n + \ \"azure-mgmt-kubernetesconfiguration>=3.1.0\",\n + \ \"azure-mgmt-resourcegraph (>=8.0.0)\",\n + \ \"azure-mgmt-resourcegraph>=8.0.0\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8sRuntime Extension.\",\n \"version\": + \"1.0.0b2\"\n },\n \"sha256Digest\": \"ac2dcca538ea94685f40be31bb34a52f710db47b122541b07a0b96efde818385\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_runtime-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_runtime-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-runtime\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-runtime\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-kubernetesconfiguration (>=3.1.0)\",\n + \ \"azure-mgmt-kubernetesconfiguration>=3.1.0\",\n + \ \"azure-mgmt-resourcegraph (>=8.0.0)\",\n + \ \"azure-mgmt-resourcegraph>=8.0.0\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8sRuntime Extension.\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"8a9725621b7e174a2f64247cf6d2d99b30650e90de5b2df71c495eb10838a3c6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_runtime-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"k8s_runtime-1.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-runtime\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-runtime\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-kubernetesconfiguration (>=3.1.0)\",\n + \ \"azure-mgmt-kubernetesconfiguration>=3.1.0\",\n + \ \"azure-mgmt-resourcegraph (>=8.0.0)\",\n + \ \"azure-mgmt-resourcegraph>=8.0.0\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8sRuntime Extension.\",\n \"version\": + \"1.0.1\"\n },\n \"sha256Digest\": \"74fa84a581ce488aec95d36a08ed846918a0b084fc6c29eecf0e0b1660a1c4ff\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_runtime-1.0.2-py3-none-any.whl\",\n + \ \"filename\": \"k8s_runtime-1.0.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-runtime\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-runtime\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-kubernetesconfiguration (>=3.1.0)\",\n + \ \"azure-mgmt-kubernetesconfiguration>=3.1.0\",\n + \ \"azure-mgmt-resourcegraph (>=8.0.0)\",\n + \ \"azure-mgmt-resourcegraph>=8.0.0\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8sRuntime Extension.\",\n \"version\": + \"1.0.2\"\n },\n \"sha256Digest\": \"7b3987f2fae83099f32f123f1e712fea7824f2041b5743db7e2dd62927de5629\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_runtime-1.0.3-py3-none-any.whl\",\n + \ \"filename\": \"k8s_runtime-1.0.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-runtime\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-runtime\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8sRuntime Extension.\",\n \"version\": \"1.0.3\"\n + \ },\n \"sha256Digest\": \"133dd153979c74d37aa25956ed8a9aa741c334929848cd67c26f268332759d40\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_runtime-1.0.4-py3-none-any.whl\",\n + \ \"filename\": \"k8s_runtime-1.0.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-runtime\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-runtime\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8sRuntime Extension.\",\n \"version\": \"1.0.4\"\n + \ },\n \"sha256Digest\": \"aee2d3008d818d78342149e6f1d2c7922abbbe43f323d51e6cd58c73b1c67b3a\"\n + \ }\n ],\n \"k8sconfiguration\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.1.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"k8sconfiguration-0.1.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8sconfiguration\",\n \"summary\": \"Microsoft Azure + Command-Line Tools K8sconfiguration Extension\",\n \"version\": + \"0.1.7\"\n },\n \"sha256Digest\": \"6440f1f1bebda0b3288ab95654a107e3f803d1ad2a23276cd5e27abe6a71dd60\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.1.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"k8sconfiguration-0.1.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8sconfiguration\",\n \"summary\": \"Microsoft Azure + Command-Line Tools K8sconfiguration Extension\",\n \"version\": + \"0.1.8\"\n },\n \"sha256Digest\": \"9d4b9d9dfcd8793297af670de10254804f5ce6d1bac6b0ad8e872cc5fdc5f761\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"k8sconfiguration-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8sconfiguration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8sconfiguration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"paramiko (~=2.6.0)\",\n \"pycryptodome + (~=3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools K8sconfiguration + Extension\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"ae3ec26beb84e821a169f02479cfc337b82141738bef7a0b09422d3676add9ae\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"k8sconfiguration-0.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8sconfiguration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8sconfiguration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"paramiko (~=2.6.0)\",\n \"pycryptodome + (~=3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools K8sconfiguration + Extension\",\n \"version\": \"0.2.1\"\n },\n + \ \"sha256Digest\": \"a9ae3e56d1289c340ebcb2790775801a9a932d6f5edba66689bada001e35f9ba\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"k8sconfiguration-0.2.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8sconfiguration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8sconfiguration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"paramiko (~=2.6.0)\",\n \"pycryptodome + (~=3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools K8sconfiguration + Extension\",\n \"version\": \"0.2.2\"\n },\n + \ \"sha256Digest\": \"8692905679d9a800326aea7698818778b6f0ce4761232e20e8fc39c67ccb28d3\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.2.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"k8sconfiguration-0.2.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8sconfiguration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8sconfiguration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"paramiko (~=2.6.0)\",\n \"pycryptodome + (~=3.9.8)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools K8sconfiguration + Extension\",\n \"version\": \"0.2.3\"\n },\n + \ \"sha256Digest\": \"65f87fadf798e66d87bfd3add12807140523cc324d5ca3dcf03bee2ce6e0839f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.2.4-py3-none-any.whl\",\n + \ \"filename\": \"k8sconfiguration-0.2.4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/k8sconfiguration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8sconfiguration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.9.8)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools K8sconfiguration Extension\",\n \"version\": + \"0.2.4\"\n },\n \"sha256Digest\": \"39940729eb7820da63d543861395b11552e86673a884bd9d1603a0fbf09e30d7\"\n + \ }\n ],\n \"kusto\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/kusto-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"kusto-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"kusto\",\n \"summary\": \"Microsoft Azure Command-Line + Tools KustoManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"ffa47cb6f8f850e75412dffa6a5e52f857d5e7ca217322ce176eea81d24768e8\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/kusto-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"kusto-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/kusto\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"kusto\",\n \"summary\": \"Microsoft Azure Command-Line + Tools KustoManagementClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"e6febb41b7a6dc6ec752825fe2af9506ff40c227bfcea9a3af5e6ded115003d1\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/kusto-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"kusto-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/kusto\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"kusto\",\n \"summary\": \"Microsoft Azure Command-Line + Tools KustoManagementClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"5738e9b48c17008688080a6b3cfd37b67dfe597a538c874ec75dddcc8e18935a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/kusto-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"kusto-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/kusto\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"kusto\",\n \"summary\": \"Microsoft Azure Command-Line + Tools KustoManagementClient Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"37ed6998527aa8d58798fb8816f94a3bd06859b2cee4d61763f63ec6c00657a7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/kusto-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"kusto-0.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/kusto\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"kusto\",\n \"summary\": \"Microsoft Azure Command-Line + Tools KustoManagementClient Extension\",\n \"version\": + \"0.4.0\"\n },\n \"sha256Digest\": \"3d08f74cc6e2a90e43b6f2859c2a2828c2a9de8b3b814f07658c6bb15531ec2c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/kusto-0.5.0-py3-none-any.whl\",\n + \ \"filename\": \"kusto-0.5.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/kusto\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"kusto\",\n \"summary\": \"Microsoft Azure Command-Line + Tools KustoManagementClient Extension\",\n \"version\": + \"0.5.0\"\n },\n \"sha256Digest\": \"cf5729e9d02029a189182523543285c9737d515f41c610c8338d43f872f9f01d\"\n + \ }\n ],\n \"load\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/load-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"load-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.41.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/load\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"load\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Load Extension.\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"9814fb6215faf902944ef7e7a6e9a8c86f40d8e348ffff64da7befe98fd3d9ef\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"load-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/load\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"load\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Load Extension.\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"373e6f5af459d33f5e8e655ba497b19e15f519918bb3a0ef3e4fd6ba3cc813a2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"load-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/load\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"load\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\",\n \"pyyaml\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Load + Extension.\",\n \"version\": \"0.3.0\"\n },\n + \ \"sha256Digest\": \"cb64e149679d6c537a29bfb07ef5785c622cf18c12099ee49b0afa36cbec3f82\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-0.3.1-py3-none-any.whl\",\n + \ \"filename\": \"load-0.3.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/load\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"load\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\",\n \"pyyaml\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Load + Testing Extension.\",\n \"version\": \"0.3.1\"\n },\n + \ \"sha256Digest\": \"f8d518332a80b94cdf7b07fa03cf65881760b077e0c36ec7d06f9df6749e2238\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-0.3.2-py3-none-any.whl\",\n + \ \"filename\": \"load-0.3.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/load\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"load\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"pyyaml\",\n \"pyyaml\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Load + Testing Extension.\",\n \"version\": \"0.3.2\"\n },\n + \ \"sha256Digest\": \"1aaef361b473946e4a5fda5d7fe961078b09ae17ee535c971a48423bb4080977\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-0.3.3-py3-none-any.whl\",\n + \ \"filename\": \"load-0.3.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/load\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"load\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"pyyaml\",\n \"pyyaml\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Load + Testing Extension.\",\n \"version\": \"0.3.3\"\n },\n + \ \"sha256Digest\": \"7b533580b6a2906a0e405a277e2a392f4367b3118ce4dd7dc80ea0609c6017ae\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-0.3.4-py3-none-any.whl\",\n + \ \"filename\": \"load-0.3.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/load\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"load\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"pyyaml\",\n \"pyyaml\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Load + Testing Extension.\",\n \"version\": \"0.3.4\"\n },\n + \ \"sha256Digest\": \"0763cfd4f7b3022e1f4540f1b15c970c0d678028753e35b3367fa8d5deac0831\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"load-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/load\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"load\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"pyyaml\",\n \"pyyaml\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Load + Testing Extension.\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"3c967ddc01b613358dd6fc86c33fa96614ffe835fb4bc348c32f5a831353c040\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"load-1.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/load\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"load\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"pyyaml\",\n \"pyyaml\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Load + Testing Extension.\",\n \"version\": \"1.0.1\"\n },\n + \ \"sha256Digest\": \"9ad6242dbd681e9db5e2f145a4422af764361e22b4c041cef68ccd19f844f4b6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-1.0.2-py3-none-any.whl\",\n + \ \"filename\": \"load-1.0.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/load\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"load\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"pyyaml\",\n \"pyyaml\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Load + Testing Extension.\",\n \"version\": \"1.0.2\"\n },\n + \ \"sha256Digest\": \"d34f7c3e72bcdcb199631e3eca8937db198e8efe6fec93f6291b1a6a1d99f019\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"load-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/load\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"load\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"pyyaml\",\n \"pyyaml\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Load + Testing Extension.\",\n \"version\": \"1.1.0\"\n },\n + \ \"sha256Digest\": \"db587f0b2c06a75309cc3c15ab3fca8c647ea16a2357f0d2d4504a974e36007f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-1.1.1-py3-none-any.whl\",\n + \ \"filename\": \"load-1.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/load\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"load\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"pyyaml\",\n \"pyyaml\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Load + Testing Extension.\",\n \"version\": \"1.1.1\"\n },\n + \ \"sha256Digest\": \"0b41277c663a5f8e3710bf71d275d3043ab5f37c6ceda3a8cf0afaf32180f8bb\"\n + \ }\n ],\n \"log-analytics\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics-0.1.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"log_analytics-0.1.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/log-analytics\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"log-analytics\",\n \"summary\": \"Support for Azure Log + Analytics query capabilities.\",\n \"version\": \"0.1.4\"\n + \ },\n \"sha256Digest\": \"6f4789fff8581a52e13bcf8f13fdc16b47662fac69e1fc3ea49280de1a8e65bc\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"log_analytics-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"aleldeib@microsoft.com\",\n \"name\": + \"Ace Eldeib\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/log-analytics\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"log-analytics\",\n \"summary\": \"Support for Azure Log + Analytics query capabilities.\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"28a24f605e80c6fc56408add14981e5b4572077f2b5f0c55208f4105624cc91b\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"log_analytics-0.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/log-analytics\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"log-analytics\",\n \"summary\": \"Support for Azure Log + Analytics query capabilities.\",\n \"version\": \"0.2.1\"\n + \ },\n \"sha256Digest\": \"23751654f76334e97c3ae3b10dd4e6896785cbf5c7c9442d3f979ebd6b9c6c21\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics-0.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"log_analytics-0.2.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/log-analytics\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"log-analytics\",\n \"summary\": \"Support for Azure Log + Analytics query capabilities.\",\n \"version\": \"0.2.2\"\n + \ },\n \"sha256Digest\": \"c04c42a26d50db82d14f76e209184b18d4cce17b458817ac607e3ff975641eb2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/log_analytics-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"log_analytics-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/log-analytics\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"log-analytics\",\n \"summary\": \"Support for Azure Log + Analytics query capabilities.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"ccd36a8ca6979c549db7d7fd78009907e9e7bc2b09437885dbdd8b107cb15b66\"\n + \ }\n ],\n \"log-analytics-solution\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics_solution-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"log_analytics_solution-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"log-analytics-solution\",\n \"summary\": \"Microsoft + Azure Command-Line Tools Operations Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"844bf0a063b4e244bfe14e215c82d7d70327540b7bf446b7cb1d97ebb8a98119\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics_solution-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"log_analytics_solution-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"log-analytics-solution\",\n \"summary\": \"Support for + Azure Log Analytics Solution\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"0c85556a82ef5850c9f90b58380c5cde6a70a2bd2a464c0a8e429c77152a87bd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/log_analytics_solution-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"log_analytics_solution-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.50.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/log-analytics-solution\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"log-analytics-solution\",\n \"summary\": \"Support for + Azure Log Analytics Solution\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"c0a4252da4c29032c4e956b768860529509e88a1ecef7f3a3189cb701a305c6b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/log_analytics_solution-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"log_analytics_solution-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.50.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/log-analytics-solution\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"log-analytics-solution\",\n \"summary\": \"Support for + Azure Log Analytics Solution\",\n \"version\": \"1.0.1\"\n + \ },\n \"sha256Digest\": \"7e10443de862cd0c19090b0a0dae5e9942e8b48c20e3a9c3305778daa756ea96\"\n + \ }\n ],\n \"logic\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/logic-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"logic-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools LogicManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"b02dea64e03adb7cf17a7afafc28844949c0f3a030f4eb005059452f0ac68040\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/logic-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"logic-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools LogicManagementClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"906b43b34be4ed38c883a4f2031ff7b2b0547f51b16c8553f050afc2986ec939\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/logic-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"logic-0.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools LogicManagementClient Extension\",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"35127cc723edf1c6311354326ebae9aa5b0d72d11141fddf3efc8fb84eadac81\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/logic-0.1.3-py3-none-any.whl\",\n + \ \"filename\": \"logic-0.1.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools LogicManagementClient Extension\",\n \"version\": + \"0.1.3\"\n },\n \"sha256Digest\": \"38a1e8285fa8ad34632094b749aa1bea703440c946f01fc546306b8e934f389a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/logic-0.1.4-py3-none-any.whl\",\n + \ \"filename\": \"logic-0.1.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools LogicManagementClient Extension\",\n \"version\": + \"0.1.4\"\n },\n \"sha256Digest\": \"e350fb81e4f2f6758a77814afebf8a71b4cdcac951142d703da15ca92ab7ca87\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/logic-0.1.5-py3-none-any.whl\",\n + \ \"filename\": \"logic-0.1.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools LogicManagementClient Extension\",\n \"version\": + \"0.1.5\"\n },\n \"sha256Digest\": \"f0405775947f7581a5df52d97a3959b7fe3bf4b49ddcb487e15147cc1c4d276a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/logic-0.1.6-py3-none-any.whl\",\n + \ \"filename\": \"logic-0.1.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/logic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools LogicManagementClient Extension\",\n \"version\": + \"0.1.6\"\n },\n \"sha256Digest\": \"b1f713229f624ea9121ef9a3778098cfa8a03bee46aae0c835c44c096c6d1ded\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/logic-0.1.7-py3-none-any.whl\",\n + \ \"filename\": \"logic-0.1.7-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/logic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools LogicManagementClient Extension\",\n \"version\": + \"0.1.7\"\n },\n \"sha256Digest\": \"09e5da23f41c3fdb89430d2229c43b5b44484b1051af1d00dbd719aee53d4063\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/logic-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"logic-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.54.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/logic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Logic Extension.\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"3b102c7e8b10ab35468e2d3218c808c4690f1cf9752e569ca329ff154ad55480\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/logic-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"logic-1.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.54.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/logic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Logic Extension.\",\n \"version\": \"1.0.1\"\n },\n + \ \"sha256Digest\": \"449289677a0af032b88feb18edc48fc0994fb0b50a0cfccdf4907a4fadac732c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/logic-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"logic-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.55.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/logic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Logic Extension.\",\n \"version\": \"1.1.0\"\n },\n + \ \"sha256Digest\": \"14c18768c02ee9c370ac7eed0f23206eee7d344a10382a3083b17b5e1848cfcd\"\n + \ }\n ],\n \"logz\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/logz-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"logz-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/logz\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"logz\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftLogz Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"6a937dbb8c5a758b29afd45ecfc101743a5bf2491f2fba60e8ea512d5b765840\"\n + \ }\n ],\n \"maintenance\": [\n {\n \"downloadUrl\": + \"https://mrpcliextensionrelease.blob.core.windows.net/cliextension/maintenance-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"maintenance-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.0.47\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"abkmr@microsoft.com\",\n \"name\": \"Abhishek + Kumar\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"maintenance\",\n \"summary\": \"Support for Azure maintenance + management.\",\n \"version\": \"1.0.1\"\n },\n + \ \"sha256Digest\": \"3e0fb5392bd29e53e7afde543d1a0ef5d33a6032f01322fd75b7afe7016c34fc\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/maintenance-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"maintenance-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/maintenance\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"maintenance\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MaintenanceClient Extension\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"351c717a37e6fb9b29d22cdca3b0744a452a1116e83f9e57e794464311708c97\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/maintenance-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"maintenance-1.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/maintenance\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"maintenance\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MaintenanceClient Extension\",\n \"version\": \"1.2.0\"\n + \ },\n \"sha256Digest\": \"a0108efeddb6228788b878801f3c08c2b68d2df4ff8cc9d5043f1a0a9c2923b1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/maintenance-1.2.1-py3-none-any.whl\",\n + \ \"filename\": \"maintenance-1.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/maintenance\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"maintenance\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MaintenanceClient Extension\",\n \"version\": \"1.2.1\"\n + \ },\n \"sha256Digest\": \"b93b0fa34c06fd4df9cef92446d8c61cc5a142ee1fae6e697aa77894959c1044\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/maintenance-1.3.0-py3-none-any.whl\",\n + \ \"filename\": \"maintenance-1.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/maintenance\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"maintenance\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MaintenanceManagementClient Extension\",\n \"version\": + \"1.3.0\"\n },\n \"sha256Digest\": \"bd261425789df79c795c02fd402b3d71eb3c31e4deb3ccdba078a58315931af0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/maintenance-1.4.0-py3-none-any.whl\",\n + \ \"filename\": \"maintenance-1.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.50.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/maintenance\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"maintenance\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MaintenanceManagementClient Extension\",\n \"version\": + \"1.4.0\"\n },\n \"sha256Digest\": \"994086879b36ce01559ae037555d29a1ea87d840fa54f437547310350108368d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/maintenance-1.5.0-py3-none-any.whl\",\n + \ \"filename\": \"maintenance-1.5.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/maintenance\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"maintenance\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MaintenanceManagementClient Extension\",\n \"version\": + \"1.5.0\"\n },\n \"sha256Digest\": \"4f1336fed4fa2cbea640627676a6cab4399c1b29ae23cb21fe73c9bea0d80a7f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/maintenance-1.6.0-py3-none-any.whl\",\n + \ \"filename\": \"maintenance-1.6.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/maintenance\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"maintenance\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MaintenanceManagementClient Extension\",\n \"version\": + \"1.6.0\"\n },\n \"sha256Digest\": \"3ab6a2dac48ba71b28bc8ee05d254daa72b62f84dda953749fa621a80ca39ae5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/maintenance-1.7.0b1-py3-none-any.whl\",\n + \ \"filename\": \"maintenance-1.7.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/maintenance\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"maintenance\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MaintenanceManagementClient Extension\",\n \"version\": + \"1.7.0b1\"\n },\n \"sha256Digest\": \"71998b7d5de7223c5e2ae7a1c00445b411d139a023876f84788f51f1f510b2db\"\n + \ }\n ],\n \"managedccfs\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/managedccfs-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"managedccfs-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managedccfs\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managedccfs\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Managedccfs Extension.\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"d54c05071228ab8b4e0f4b07478ac02da6f7af57ef994f75e6283b4150bf64ed\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managedccfs-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"managedccfs-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managedccfs\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managedccfs\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Managedccfs Extension.\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"378f425f35420373e9703a5dc8c0f05ca8176fb8404b38610d4de828f7c23d37\"\n + \ }\n ],\n \"managednetworkfabric\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"managednetworkfabric-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managednetworkfabric\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managednetworkfabric\",\n \"summary\": \"Support for + managednetworkfabric commands based on 2023-02-01-preview API version.\",\n + \ \"version\": \"1.0.0b1\"\n },\n \"sha256Digest\": + \"17e8e5be87baaeb2b59ab578c646e0ec978ac7ec0a610f9145515ccefce6e274\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"managednetworkfabric-1.0.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managednetworkfabric\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managednetworkfabric\",\n \"summary\": \"Support for + managednetworkfabric commands based on 2023-02-01-preview API version.\",\n + \ \"version\": \"1.0.0b2\"\n },\n \"sha256Digest\": + \"c521778380078c441fb6bbc41449a5c18ca75b4ce93c559a2c82b46a86506d82\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-3.1.0-py3-none-any.whl\",\n + \ \"filename\": \"managednetworkfabric-3.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managednetworkfabric\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managednetworkfabric\",\n \"summary\": \"Support for + managednetworkfabric commands based on 2023-06-15 API version.\",\n \"version\": + \"3.1.0\"\n },\n \"sha256Digest\": \"8837fd0a52557b0a20fe0aa1e8eb1974f4357de778803a06fbd6ea923d3743b2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-3.2.0-py3-none-any.whl\",\n + \ \"filename\": \"managednetworkfabric-3.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managednetworkfabric\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managednetworkfabric\",\n \"summary\": \"Support for + managednetworkfabric commands based on 2023-06-15 API version.\",\n \"version\": + \"3.2.0\"\n },\n \"sha256Digest\": \"f757d1632fa1a9a45f2b76e83d79884e9985204125a768081f1be11c62c3466d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-4.1.0-py3-none-any.whl\",\n + \ \"filename\": \"managednetworkfabric-4.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managednetworkfabric\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managednetworkfabric\",\n \"summary\": \"Support for + managednetworkfabric commands based on 2023-06-15 API version.\",\n \"version\": + \"4.1.0\"\n },\n \"sha256Digest\": \"8069311c750900920a8f15005bdbca4e339e9e48b7e2ba7c1b385e3ed09a5359\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-4.1.1-py3-none-any.whl\",\n + \ \"filename\": \"managednetworkfabric-4.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managednetworkfabric\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managednetworkfabric\",\n \"summary\": \"Support for + managednetworkfabric commands based on 2023-06-15 API version.\",\n \"version\": + \"4.1.1\"\n },\n \"sha256Digest\": \"a267de6e2d21e6e4e081c1daeceeb30db57c0cae23f00dd60a5e8af29e060896\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-4.2.0-py3-none-any.whl\",\n + \ \"filename\": \"managednetworkfabric-4.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managednetworkfabric\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managednetworkfabric\",\n \"summary\": \"Support for + managednetworkfabric commands based on 2023-06-15 API version.\",\n \"version\": + \"4.2.0\"\n },\n \"sha256Digest\": \"f80f528a099862fa8e792f770943a832dbb958b503cc5cc8cb6f58766056d857\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-5.0.0-py3-none-any.whl\",\n + \ \"filename\": \"managednetworkfabric-5.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managednetworkfabric\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managednetworkfabric\",\n \"summary\": \"Support for + managednetworkfabric commands based on 2023-06-15 API version.\",\n \"version\": + \"5.0.0\"\n },\n \"sha256Digest\": \"eedba7ca67f0a05cdc5122a1e414626e2bac3e894167c97881bfa97d4ae8478a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-5.2.0-py3-none-any.whl\",\n + \ \"filename\": \"managednetworkfabric-5.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managednetworkfabric\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managednetworkfabric\",\n \"summary\": \"Support for + managednetworkfabric commands based on 2023-06-15 API version.\",\n \"version\": + \"5.2.0\"\n },\n \"sha256Digest\": \"3e8ccf3ae6cda948834ed04bb07ea969b199088e224e9a658efa96017ba481dc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-5.2.1-py3-none-any.whl\",\n + \ \"filename\": \"managednetworkfabric-5.2.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managednetworkfabric\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managednetworkfabric\",\n \"summary\": \"Support for + managednetworkfabric commands based on 2023-06-15 API version.\",\n \"version\": + \"5.2.1\"\n },\n \"sha256Digest\": \"adbb1546e9f9eb958b016f1ba9af9f5bb61d13e098eae63687e1272fedad66b4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-5.2.4-py3-none-any.whl\",\n + \ \"filename\": \"managednetworkfabric-5.2.4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managednetworkfabric\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managednetworkfabric\",\n \"summary\": \"Support for + managednetworkfabric commands based on 2023-06-15 API version.\",\n \"version\": + \"5.2.4\"\n },\n \"sha256Digest\": \"e42a0b991f5cde4b9ea7be218330c29b735400432d10727c1a0e3da174f5ea1a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-6.0.0-py3-none-any.whl\",\n + \ \"filename\": \"managednetworkfabric-6.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managednetworkfabric\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managednetworkfabric\",\n \"summary\": \"Support for + managednetworkfabric commands based on 2023-06-15 API version.\",\n \"version\": + \"6.0.0\"\n },\n \"sha256Digest\": \"340483c69484865bb4e2cadc97aa5f6b258ee894920f4df0dd74ac412a8b2d59\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-6.1.0-py3-none-any.whl\",\n + \ \"filename\": \"managednetworkfabric-6.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managednetworkfabric\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managednetworkfabric\",\n \"summary\": \"Support for + managednetworkfabric commands based on 2023-06-15 API version.\",\n \"version\": + \"6.1.0\"\n },\n \"sha256Digest\": \"be68c90c27c0c7800fb71aee0e4320b5c07d2907dbe3672bde4198dca92aa2fd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-6.2.0-py3-none-any.whl\",\n + \ \"filename\": \"managednetworkfabric-6.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managednetworkfabric\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managednetworkfabric\",\n \"summary\": \"Support for + managednetworkfabric commands based on 2023-06-15 API version.\",\n \"version\": + \"6.2.0\"\n },\n \"sha256Digest\": \"3761e2319e0a6bccde79d59e2ab2d508f00e601562c0b7e4bf290ff9d9b14479\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-6.4.0-py3-none-any.whl\",\n + \ \"filename\": \"managednetworkfabric-6.4.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managednetworkfabric\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managednetworkfabric\",\n \"summary\": \"Support for + managednetworkfabric commands based on 2023-06-15 API version.\",\n \"version\": + \"6.4.0\"\n },\n \"sha256Digest\": \"9d41078e0654aaae36a5f0f283f51de98cc4360582920536542546ed34ca0bc4\"\n + \ }\n ],\n \"managementpartner\": [\n {\n + \ \"downloadUrl\": \"https://files.pythonhosted.org/packages/28/08/0fde582cf50eaf1ef304b35674b9b22f6731d95b2e41339eba4d35583b18/managementpartner-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"managementpartner-0.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"classifiers\": [\n + \ \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"jefl@microsoft.com\",\n \"name\": + \"Jeffrey Li\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.29.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managementpartner\",\n \"summary\": \"Support for Management + Partner preview\",\n \"version\": \"0.1.2\"\n },\n + \ \"sha256Digest\": \"f7ec0984b4d5a4c9192aa3ab6b78c867fc38cf620effef1804d89c9d1d9f204f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/managementpartner-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"managementpartner-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"jefl@microsoft.com\",\n \"name\": + \"Jeffrey Li\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managementpartner\",\n \"summary\": \"Support for Management + Partner preview\",\n \"version\": \"0.1.3\"\n },\n + \ \"sha256Digest\": \"22ddf4b1cdc77e99262cb6089c4d96040065828a1d38a2709fdb945d3c851839\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managementpartner-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"managementpartner-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"jefl@microsoft.com\",\n \"name\": + \"Jeffrey Li\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managementpartner\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managementpartner\",\n \"summary\": \"Support for Management + Partner preview\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"a5d4a264647818b4a19cdc356ab5e6f8dd1b08fa6713c00a15297d2c5a059494\"\n + \ }\n ],\n \"mcc\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/mcc-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"mcc-1.0.0b1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/mcc\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mcc\",\n \"summary\": \"Microsoft Connected Cache CLI + Commands.\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"6a734c7fb19d71ad5d2101464b247c7bffdda1e59c2651e98547ff79eb19ed4d\"\n + \ }\n ],\n \"mdp\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/mdp-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"mdp-1.0.0b1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/mdp\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mdp\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Mdp Extension.\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"7875607d84eaf835afe73b9eee9280a5169c5b0b1dd1b66a6eff593fe292a4de\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mdp-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"mdp-1.0.0b2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/mdp\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mdp\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Mdp Extension.\",\n \"version\": \"1.0.0b2\"\n },\n + \ \"sha256Digest\": \"062ad026d9eaf791b5928c4fb793148d40c6c297cee32f175cd3a155eb24d93f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mdp-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"mdp-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/mdp\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mdp\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Mdp Extension.\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"c0a4ae1817103b548f1d91d7e1c85528415da016a83d483154859723bfb78d81\"\n + \ }\n ],\n \"mesh\": [\n {\n \"downloadUrl\": + \"https://meshcli.blob.core.windows.net/cli/mesh-0.10.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"mesh-0.10.6-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"mesh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"sfmergeutility (==0.1.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for Microsoft Azure Service Fabric Mesh - Public Preview\",\n \"version\": + \"0.10.6\"\n },\n \"sha256Digest\": \"07b6356cd15294c0bc0b31cfde1cdb2b92516b00728980d7a53557bb49273842\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mesh-0.10.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"mesh-0.10.7-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/mesh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"mesh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"sfmergeutility (==0.1.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for Microsoft Azure Service Fabric Mesh - Public Preview\",\n \"version\": + \"0.10.7\"\n },\n \"sha256Digest\": \"9433191eba661716d5f42fd53dcbc9c2711ec568ed444bfcd0fe3555a717fa0b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mesh-1.0.0a1-py2.py3-none-any.whl\",\n + \ \"filename\": \"mesh-1.0.0a1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.50.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/mesh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"mesh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"sfmergeutility (==0.1.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"Support for Microsoft Azure Service Fabric Mesh - Public Preview\",\n \"version\": + \"1.0.0a1\"\n },\n \"sha256Digest\": \"fe52e3ed5bd7252a120bbebc0a578b0138a257a22dd264adeed97862ede07a35\"\n + \ }\n ],\n \"microsoft-fabric\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/microsoft_fabric-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"microsoft_fabric-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/microsoft-fabric\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"microsoft-fabric\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Microsoft Fabric Extension.\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"8ba450a5a3daafa8b9b6b6e9ee8224f468fd972332e905000f2acc7ff00cd9bb\"\n + \ }\n ],\n \"mixed-reality\": [\n {\n \"downloadUrl\": + \"https://test-files.pythonhosted.org/packages/e4/fa/14628eb512ef4f0c38e4e6c8ee2d0624e03d352ca0ec1b1167a32f9de9a3/mixed_reality-0.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"mixed_reality-0.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"classifiers\": [\n + \ \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"xiangyul@microsoft.com\",\n + \ \"name\": \"Xiangyu Luo\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mixed-reality\",\n \"summary\": \"Mixed Reality Azure + CLI Extension.\",\n \"version\": \"0.0.1\"\n },\n + \ \"sha256Digest\": \"c5b7ef47d8db578920bcbda371a47edd19f8f681088823c2622dcb9332417587\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/mixed_reality-0.0.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"mixed_reality-0.0.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.30\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"xiangyul@microsoft.com\",\n + \ \"name\": \"Xiangyu Luo\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mixed-reality\",\n \"summary\": \"Mixed Reality Azure + CLI Extension.\",\n \"version\": \"0.0.2\"\n },\n + \ \"sha256Digest\": \"30449391c1d1e9d67210d0ef81109a11a0f74a24a6f07644c17aed58cf056173\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mixed_reality-0.0.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"mixed_reality-0.0.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"xiangyul@microsoft.com\",\n \"name\": + \"Xiangyu Luo\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/mixed-reality\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mixed-reality\",\n \"summary\": \"Mixed Reality Azure + CLI Extension.\",\n \"version\": \"0.0.3\"\n },\n + \ \"sha256Digest\": \"29f07fa6db12c70f9b93a3914d61ea108a5f410f40bc92389c1a87ea9312c766\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mixed_reality-0.0.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"mixed_reality-0.0.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"xiangyul@microsoft.com\",\n \"name\": + \"Xiangyu Luo\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/mixed-reality\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mixed-reality\",\n \"summary\": \"Mixed Reality Azure + CLI Extension.\",\n \"version\": \"0.0.4\"\n },\n + \ \"sha256Digest\": \"509b675781949c69baa911261a0637ba5a0fac9b11ee458feea7ddfb71393fef\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mixed_reality-0.0.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"mixed_reality-0.0.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"xiangyul@microsoft.com\",\n \"name\": + \"Xiangyu Luo\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/mixed-reality\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mixed-reality\",\n \"summary\": \"Mixed Reality Azure + CLI Extension.\",\n \"version\": \"0.0.5\"\n },\n + \ \"sha256Digest\": \"026aaf58f9ad02d74837d21a1f5c122264a59814e0b7c395c26e5fdc1293187e\"\n + \ }\n ],\n \"ml\": [\n {\n \"downloadUrl\": + \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.0a1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.0.0a1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-identity\",\n \"azure-storage-blob + (<=12.5.0,>12.0.0b4)\",\n \"azure-storage-file-share + (==12.3.0)\",\n \"cryptography (<=3.3.2)\",\n + \ \"docker (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"pathspec + (==0.8.*)\",\n \"pydash (<=4.9.0)\",\n \"pyjwt + (<2.0.0)\",\n \"tqdm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n + \ \"version\": \"2.0.0a1\"\n },\n \"sha256Digest\": + \"da1a040a0755f2b6898ac6ed9f90241a38b776031e74d070431cd2ba63a13ea3\"\n },\n + \ {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.1a1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.0.1a1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-identity\",\n \"azure-storage-blob + (<=12.5.0,>12.0.0b4)\",\n \"azure-storage-file-share + (==12.3.0)\",\n \"cryptography (<=3.3.2)\",\n + \ \"docker (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"pathspec + (==0.8.*)\",\n \"pydash (<=4.9.0)\",\n \"pyjwt + (<2.0.0)\",\n \"tqdm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n + \ \"version\": \"2.0.1a1\"\n },\n \"sha256Digest\": + \"079a8f3ecf3f0816a8afd4fe65303940721679f02718f70ddb706934201ada50\"\n },\n + \ {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.1a2-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.0.1a2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-identity\",\n \"azure-storage-blob + (<=12.5.0,>12.0.0b4)\",\n \"azure-storage-file-share + (==12.3.0)\",\n \"cryptography (<=3.3.2)\",\n + \ \"docker (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"pathspec + (==0.8.*)\",\n \"pydash (<=4.9.0)\",\n \"pyjwt + (<2.0.0)\",\n \"tqdm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n + \ \"version\": \"2.0.1a2\"\n },\n \"sha256Digest\": + \"b17126a35dd3ebb65cbe54fe2d69fc9274b37ec5a150ea084b1b343b7393ccde\"\n },\n + \ {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.1a3-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.0.1a3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-identity\",\n \"azure-storage-blob + (<=12.5.0,>12.0.0b4)\",\n \"azure-storage-file-share + (==12.3.0)\",\n \"cryptography (<=3.3.2)\",\n + \ \"docker (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"pathspec + (==0.8.*)\",\n \"pydash (<=4.9.0)\",\n \"pyjwt + (<2.0.0)\",\n \"tqdm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n + \ \"version\": \"2.0.1a3\"\n },\n \"sha256Digest\": + \"67c57c5c73d7ebaa99d1df52ba82c7a551bf61a182b4888128e8c62c896cf84b\"\n },\n + \ {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.1a4-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.0.1a4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-identity\",\n \"azure-storage-blob + (<=12.5.0,>12.0.0b4)\",\n \"azure-storage-file-share + (==12.3.0)\",\n \"cryptography (<=3.3.2)\",\n + \ \"docker (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"pathspec + (==0.8.*)\",\n \"pydash (<=4.9.0)\",\n \"pyjwt + (<2.0.0)\",\n \"tqdm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n + \ \"version\": \"2.0.1a4\"\n },\n \"sha256Digest\": + \"5a20917c68a953ad52c6c0596cd04e8c89f833e8ede17e64866a26f43e7f0164\"\n },\n + \ {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.1a5-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.0.1a5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-identity\",\n \"azure-storage-blob + (<=12.5.0,>12.0.0b4)\",\n \"azure-storage-file-share + (==12.3.0)\",\n \"cryptography (<=3.3.2)\",\n + \ \"docker (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"pathspec + (==0.8.*)\",\n \"pydash (<=4.9.0)\",\n \"pyjwt + (<2.0.0)\",\n \"tqdm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n + \ \"version\": \"2.0.1a5\"\n },\n \"sha256Digest\": + \"234ad4707c7c2b4bace2f4c3ed9e15f2f47d01ee00f7a5e13ccafaacec6de8d2\"\n },\n + \ {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.2-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.0.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-identity\",\n \"azure-storage-blob + (<=12.5.0,>12.0.0b4)\",\n \"azure-storage-file-share + (==12.3.0)\",\n \"cryptography (<=3.3.2)\",\n + \ \"docker (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"pathspec + (==0.8.*)\",\n \"pydash (<=4.9.0)\",\n \"pyjwt + (<2.0.0)\",\n \"tqdm\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n + \ \"version\": \"2.0.2\"\n },\n \"sha256Digest\": + \"80dc61c8d6778a262b882dc0c5e05b77551e64d338d90fbe8a7eb8c731f6814c\"\n },\n + \ {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.3-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.0.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-identity\",\n + \ \"azure-storage-blob (<=12.9.0,>12.0.0b4)\",\n + \ \"azure-storage-file-share (<13.0.0)\",\n + \ \"cryptography (<=3.3.2)\",\n \"docker + (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.8.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<2.0.0)\",\n \"tqdm\",\n \"typing-extensions + (<4.0.0,>=3.10)\"\n ]\n }\n + \ ],\n \"summary\": \"Microsoft Azure + Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \"version\": + \"2.0.3\"\n },\n \"sha256Digest\": \"3eac9a5c8ee9e78151d9bbcc54eb978a1987f6fd7c1beef0b4a575113f0a4466\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.0.7-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.0.7-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-identity\",\n + \ \"azure-storage-blob (<=12.9.0,>12.0.0b4)\",\n + \ \"azure-storage-file-share (<13.0.0)\",\n + \ \"cryptography (<=3.3.2)\",\n \"docker + (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<=2.3.0)\",\n \"tqdm (<=4.63.0)\",\n \"typing-extensions + (<4.0.0,>=3.10)\"\n ]\n }\n + \ ],\n \"summary\": \"Microsoft Azure + Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \"version\": + \"2.0.7\"\n },\n \"sha256Digest\": \"67f5f65437e50c763ddc9595542d5b12f949c1e325c30a93317ca5f292ad25e5\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.1.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-identity\",\n + \ \"azure-storage-blob (<=12.9.0,>12.0.0b4)\",\n + \ \"azure-storage-file-share (<13.0.0)\",\n + \ \"cryptography (<=3.3.2)\",\n \"docker + (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<=2.3.0)\",\n \"tqdm (<=4.63.0)\",\n \"typing-extensions + (<4.0.0,>=3.10)\"\n ]\n }\n + \ ],\n \"summary\": \"Microsoft Azure + Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \"version\": + \"2.1.1\"\n },\n \"sha256Digest\": \"373fa36ced7ef00a8caeb818bf8d83a52ca519e01180a0191b99bdfeae95a037\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.1.2-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-identity\",\n + \ \"azure-storage-blob (<=12.9.0,>12.0.0b4)\",\n + \ \"azure-storage-file-share (<13.0.0)\",\n + \ \"cryptography (<=3.3.2)\",\n \"docker + (>=4.0.0,~=5.0.0)\",\n \"isodate\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<=2.3.0)\",\n \"tqdm (<=4.63.0)\",\n \"typing-extensions + (<4.0.0,>=3.10)\"\n ]\n }\n + \ ],\n \"summary\": \"Microsoft Azure + Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \"version\": + \"2.1.2\"\n },\n \"sha256Digest\": \"19845c2b0d3701f5ff9e34162047c0c85f57904e17cdcbdde784ab4c8ac2fc49\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.2.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"applicationinsights (<=0.11.10)\",\n \"azure-common + (<2.0.0,>=1.1)\",\n \"azure-identity\",\n \"azure-storage-blob + (<=12.9.0,>12.0.0b4)\",\n \"azure-storage-file-share + (<13.0.0)\",\n \"colorama (<=0.4.4)\",\n \"cryptography + (<=3.3.2)\",\n \"docker (>=4.0.0,~=5.0.0)\",\n + \ \"isodate\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<=2.3.0)\",\n \"tqdm (<=4.63.0)\",\n \"typing-extensions + (<4.0.0,>=3.10)\"\n ]\n }\n + \ ],\n \"summary\": \"Microsoft Azure + Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \"version\": + \"2.2.1\"\n },\n \"sha256Digest\": \"9e0c11f0d587d5c34969bef3287de5fba3f6fc398541812d2dc4c4db47e24498\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.2.2-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.2.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"applicationinsights (<=0.11.10)\",\n \"azure-common + (<2.0.0,>=1.1)\",\n \"azure-identity\",\n \"azure-storage-blob + (<=12.9.0,>12.0.0b4)\",\n \"azure-storage-file-share + (<13.0.0)\",\n \"colorama (<=0.4.4)\",\n \"cryptography + (<=3.3.2)\",\n \"docker (>=4.0.0,~=5.0.0)\",\n + \ \"isodate\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<=2.3.0)\",\n \"tqdm (<=4.63.0)\",\n \"typing-extensions + (<4.0.0,>=3.10)\"\n ]\n }\n + \ ],\n \"summary\": \"Microsoft Azure + Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \"version\": + \"2.2.2\"\n },\n \"sha256Digest\": \"69cf00542a4acc6a1d22c9a0c020268cdccf0b3f52d1c49edb0cd1d6b4056237\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.2.3-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.2.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"applicationinsights (<=0.11.10)\",\n \"azure-common + (<2.0.0,>=1.1)\",\n \"azure-identity\",\n \"azure-storage-blob + (<=12.9.0,>12.0.0b4)\",\n \"azure-storage-file-share + (<13.0.0)\",\n \"colorama (<=0.4.4)\",\n \"cryptography + (<=3.3.2)\",\n \"docker\",\n \"isodate\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"pathspec + (==0.9.*)\",\n \"pydash (<=4.9.0)\",\n \"pyjwt + (<=2.3.0)\",\n \"tqdm (<=4.63.0)\",\n \"typing-extensions + (<4.0.0,>=3.10)\"\n ]\n }\n + \ ],\n \"summary\": \"Microsoft Azure + Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \"version\": + \"2.2.3\"\n },\n \"sha256Digest\": \"6cbfac0985961d82ae22fe7bccac9cee8a26c78958756f463ced58913ef96409\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.3.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.3.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/machinelearningservices\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"applicationinsights (<=0.11.10)\",\n \"azure-common + (<2.0.0,>=1.1)\",\n \"azure-identity\",\n \"azure-storage-blob + (<=12.9.0,>12.0.0b4)\",\n \"azure-storage-file-share + (<13.0.0)\",\n \"colorama (<=0.4.4)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<=2.3.0)\",\n \"tqdm (<=4.63.0)\",\n \"typing-extensions + (<4.0.0,>=3.10)\"\n ]\n }\n + \ ],\n \"summary\": \"Microsoft Azure + Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \"version\": + \"2.3.1\"\n },\n \"sha256Digest\": \"b296b2f83a88746f8be534b61a21e8a3e51f01b57b240897f79b9f9289388643\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.4.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"Programming Language :: Python :: 3.10\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"description_content_type\": + \"text/x-rst\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azuremlsdk@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"applicationinsights (<=0.11.10)\",\n \"azure-common + (<2.0.0,>=1.1)\",\n \"azure-identity\",\n \"azure-storage-blob + (<=12.9.0,>=12.5.0)\",\n \"azure-storage-file-share + (<13.0.0)\",\n \"colorama (<=0.4.4)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<=2.3.0)\",\n \"tqdm (<=4.63.0)\",\n \"typing-extensions + (<4.0.0,>=3.10)\"\n ]\n }\n + \ ],\n \"summary\": \"Microsoft Azure + Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \"version\": + \"2.4.0\"\n },\n \"sha256Digest\": \"12619f9c3d0908f934a4e76e5c3dcf5c86bd58c89819c725b9c0dad143adac51\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.4.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.4.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"Programming Language :: Python :: 3.10\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"description_content_type\": + \"text/x-rst\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azuremlsdk@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"applicationinsights (<=0.11.10)\",\n \"azure-common + (<2.0.0,>=1.1)\",\n \"azure-identity\",\n \"azure-storage-blob + (<=12.9.0,>=12.5.0)\",\n \"azure-storage-file-share + (<13.0.0)\",\n \"colorama (<=0.4.4)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<=2.3.0)\",\n \"tqdm (<=4.63.0)\",\n \"typing-extensions + (<4.0.0,>=3.10)\"\n ]\n }\n + \ ],\n \"summary\": \"Microsoft Azure + Command-Line Tools AzureMachineLearningWorkspaces Extension\",\n \"version\": + \"2.4.1\"\n },\n \"sha256Digest\": \"646e548193d1eb96618f9d1c3e53f54cc8d5fb9b8de6cd67a11065567dae21ad\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.5.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.5.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"Programming Language :: Python :: 3.10\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"description_content_type\": + \"text/x-rst\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azuremlsdk@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"applicationinsights (<=0.11.10)\",\n \"azure-common + (<2.0.0,>=1.1)\",\n \"azure-identity\",\n \"azure-storage-blob + (<13.0.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<=12.6.0)\",\n \"azure-storage-file-share + (<13.0.0)\",\n \"colorama (<=0.4.4)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<=2.3.0)\",\n \"tqdm (<=4.63.0)\",\n \"typing-extensions + (>=4.0.1)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.5.0\"\n },\n + \ \"sha256Digest\": \"66c2c3dd71040be0ba304b80e25e8f5f2196caa3970e3c7e15d260243dde31e7\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.6.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.6.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"Programming Language :: Python :: 3.10\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"description_content_type\": + \"text/x-rst\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azuremlsdk@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"applicationinsights (<=0.11.10)\",\n \"azure-common + (<2.0.0,>=1.1)\",\n \"azure-identity\",\n \"azure-storage-blob + (<12.13.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<=12.8.0)\",\n \"azure-storage-file-share + (<12.9.0)\",\n \"colorama (<=0.4.4)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<3.0.0)\",\n \"strictyaml (<=1.6.1)\",\n \"tqdm + (<=4.63.0)\",\n \"typing-extensions (>=4.0.1)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.6.0\"\n },\n + \ \"sha256Digest\": \"9d5d0c3c4cf260a7a4590c00200d7a9de4824017f657fe0a499887fdcf4d8b9c\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.6.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.6.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"Programming Language :: Python :: 3.10\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"description_content_type\": + \"text/x-rst\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azuremlsdk@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"applicationinsights (<=0.11.10)\",\n \"azure-common + (<2.0.0,>=1.1)\",\n \"azure-identity\",\n \"azure-storage-blob + (<12.13.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<=12.8.0)\",\n \"azure-storage-file-share + (<12.9.0)\",\n \"colorama (<=0.4.4)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<3.0.0)\",\n \"strictyaml (<=1.6.1)\",\n \"tqdm + (<=4.63.0)\",\n \"typing-extensions (>=4.0.1)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.6.1\"\n },\n + \ \"sha256Digest\": \"a39a600331658e27774e33e7b6ed73b76d85c5b75bf14d1b80d7c492934badcc\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.7.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.7.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"Programming Language :: Python :: 3.10\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"description_content_type\": + \"text/x-rst\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azuremlsdk@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"applicationinsights (<=0.11.10)\",\n \"azure-common + (<2.0.0,>=1.1)\",\n \"azure-identity\",\n \"azure-storage-blob + (<12.13.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<12.8.0)\",\n \"azure-storage-file-share (<12.9.0)\",\n + \ \"colorama (<=0.4.4)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<3.0.0)\",\n \"strictyaml (<=1.6.1)\",\n \"tqdm + (<=4.63.0)\",\n \"typing-extensions (>=4.0.1)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.7.0\"\n },\n + \ \"sha256Digest\": \"545465410e7c891ecfaf09a5d074745576a872db8c4b3691ce16c13fa76493bd\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.7.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.7.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"Programming Language :: Python :: 3.10\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"description_content_type\": + \"text/x-rst\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azuremlsdk@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"applicationinsights (<=0.11.10)\",\n \"azure-common + (<2.0.0,>=1.1)\",\n \"azure-identity\",\n \"azure-storage-blob + (<12.13.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<12.8.0)\",\n \"azure-storage-file-share (<12.9.0)\",\n + \ \"colorama (<=0.4.4)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<3.0.0)\",\n \"strictyaml (<=1.6.1)\",\n \"tqdm + (<=4.63.0)\",\n \"typing-extensions (>=4.0.1)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.7.1\"\n },\n + \ \"sha256Digest\": \"42119a1eb36735135450160c28206d4e502649e047c7fee4b9058783cbfca17f\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.8.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.8.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"Programming Language :: Python :: 3.10\",\n \"License + :: OSI Approved :: MIT License\"\n ],\n \"description_content_type\": + \"text/x-rst\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azuremlsdk@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"applicationinsights (<=0.11.10)\",\n \"azure-common + (<2.0.0,>=1.1)\",\n \"azure-storage-blob (<12.13.0,>=12.10.0)\",\n + \ \"azure-storage-file-datalake (<12.8.0)\",\n + \ \"azure-storage-file-share (<12.9.0)\",\n + \ \"colorama (<=0.4.4)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pathspec (==0.9.*)\",\n + \ \"pydash (<=4.9.0)\",\n \"pyjwt + (<3.0.0)\",\n \"strictyaml (<=1.6.1)\",\n \"tqdm + (<=4.63.0)\",\n \"typing-extensions (>=4.0.1)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.8.0\"\n },\n + \ \"sha256Digest\": \"b2579e95b5e563633e2975286837540968a2773880ea40cf7d7e678eb09ab9d3\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.9.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.9.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"applicationinsights (<=0.11.10)\",\n \"azure-common + (<2.0.0,>=1.1)\",\n \"azure-storage-blob (<13.0.0,>=12.10.0)\",\n + \ \"azure-storage-file-datalake (<13.0.0)\",\n + \ \"azure-storage-file-share (<13.0.0)\",\n + \ \"colorama (<=0.4.4)\",\n \"cryptography\",\n + \ \"docker\",\n \"docker\",\n + \ \"isodate\",\n \"jsonschema + (<5.0.0,>=4.0.0)\",\n \"marshmallow (<4.0.0,>=3.5)\",\n + \ \"pydash (<6.0.0)\",\n \"pyjwt + (<3.0.0)\",\n \"strictyaml (<=1.6.1)\",\n \"tqdm + (<=4.63.0)\",\n \"typing-extensions (<5.0.0)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.9.0\"\n },\n + \ \"sha256Digest\": \"b899b67d572d38b29f5ac030b411ae37bbe4bcbfa421ffd75986fa8d4e78e3cb\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.10.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.10.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-storage-blob + (<13.0.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<13.0.0)\",\n \"azure-storage-file-share (<13.0.0)\",\n + \ \"colorama (<=0.4.4)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pydash (<6.0.0)\",\n + \ \"pyjwt (<3.0.0)\",\n \"strictyaml + (<=1.6.1)\",\n \"tqdm (<=4.63.0)\",\n \"typing-extensions + (<5.0.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.10.0\"\n },\n + \ \"sha256Digest\": \"f510061270cb368a88e84c14f58cbb4bf49220e46e320718dd0efee7889b6ce8\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.11.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.11.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-storage-blob + (<13.0.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<13.0.0)\",\n \"azure-storage-file-share (<13.0.0)\",\n + \ \"colorama (<0.5.0)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure + (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \"pyjwt + (<3.0.0)\",\n \"strictyaml (<2.0.0)\",\n \"tqdm + (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.11.0\"\n },\n + \ \"sha256Digest\": \"26627137dd0fb9d276b1a111ec2659e2f9ea840376bcab64b2e7888c13db4087\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.12.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.12.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-storage-blob + (<13.0.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<13.0.0)\",\n \"azure-storage-file-share (<13.0.0)\",\n + \ \"colorama (<0.5.0)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure + (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \"pyjwt + (<3.0.0)\",\n \"strictyaml (<2.0.0)\",\n \"tqdm + (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.12.0\"\n },\n + \ \"sha256Digest\": \"fc36a71835ec46baa7b6a132fef076bd6626cb7034896842ea11a4e6429bd528\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.12.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.12.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-storage-blob + (<13.0.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<13.0.0)\",\n \"azure-storage-file-share (<13.0.0)\",\n + \ \"colorama (<0.5.0)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure + (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \"pyjwt + (<3.0.0)\",\n \"strictyaml (<2.0.0)\",\n \"tqdm + (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.12.1\"\n },\n + \ \"sha256Digest\": \"8a5a3733a1bc65e4b100db5aab72bfe322ad4d4b5268c04dcf03da87374f77ce\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.13.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.13.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-storage-blob + (<13.0.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<13.0.0)\",\n \"azure-storage-file-share (<13.0.0)\",\n + \ \"colorama (<0.5.0)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pydash (<6.0.0)\",\n + \ \"pyjwt (<3.0.0)\",\n \"strictyaml + (<2.0.0)\",\n \"tqdm (<5.0.0)\",\n \"typing-extensions + (<5.0.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.13.0\"\n },\n + \ \"sha256Digest\": \"24d2f8af646ace7d5b2c7c49adb8eff7e6d8a8610cbf071b2654695f8d512f3f\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.14.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.14.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-storage-blob + (<13.0.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<13.0.0)\",\n \"azure-storage-file-share (<13.0.0)\",\n + \ \"colorama (<0.5.0)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pydash (<6.0.0)\",\n + \ \"pyjwt (<3.0.0)\",\n \"strictyaml + (<2.0.0)\",\n \"tqdm (<5.0.0)\",\n \"typing-extensions + (<5.0.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.14.0\"\n },\n + \ \"sha256Digest\": \"90e8e03ff67f1c6b73219b44764a44e6e45ab7786ff5dd26660ba9f600879747\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.14.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.14.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-storage-blob + (<13.0.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<13.0.0)\",\n \"azure-storage-file-share (<13.0.0)\",\n + \ \"colorama (<0.5.0)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"pydash (<6.0.0)\",\n + \ \"pyjwt (<3.0.0)\",\n \"strictyaml + (<2.0.0)\",\n \"tqdm (<5.0.0)\",\n \"typing-extensions + (<5.0.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.14.1\"\n },\n + \ \"sha256Digest\": \"50c1619498adf17aaf88c0c8085ca3f4c82862dacc7260b5e1e805832356493b\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.15.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.15.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-storage-blob + (<13.0.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<13.0.0)\",\n \"azure-storage-file-share (<13.0.0)\",\n + \ \"colorama (<0.5.0)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure + (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \"pyjwt + (<3.0.0)\",\n \"strictyaml (<2.0.0)\",\n \"tqdm + (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.15.0\"\n },\n + \ \"sha256Digest\": \"89002fd24b1096dab8dadd02c13930113f7f9044b1632baafe13e63cfda022bf\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.15.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.15.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-storage-blob + (<13.0.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<13.0.0)\",\n \"azure-storage-file-share (<13.0.0)\",\n + \ \"colorama (<0.5.0)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure + (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \"pyjwt + (<3.0.0)\",\n \"strictyaml (<2.0.0)\",\n \"tqdm + (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.15.1\"\n },\n + \ \"sha256Digest\": \"b195ed8e627c36a34a7aac6f7c261a80714cf7ae9fbfd01981a39119dd1a70a5\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.16.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.16.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-mgmt-resource + (<23.0.0,>=3.0.0)\",\n \"azure-mgmt-resource + (<23.0.0,>=3.0.0)\",\n \"azure-mgmt-resourcegraph + (<9.0.0,>=2.0.0)\",\n \"azure-mgmt-resourcegraph + (<9.0.0,>=2.0.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<13.0.0)\",\n \"azure-storage-file-share (<13.0.0)\",\n + \ \"colorama (<0.5.0)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure + (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \"pyjwt + (<3.0.0)\",\n \"strictyaml (<2.0.0)\",\n \"tqdm + (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.16.0\"\n },\n + \ \"sha256Digest\": \"d86047e774ac8c16b3d6eb4490588b527a257a04977dd181cfd06ac7778b6c23\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.17.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.17.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-mgmt-resource + (<23.0.0,>=3.0.0)\",\n \"azure-mgmt-resourcegraph + (<9.0.0,>=2.0.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<13.0.0)\",\n \"azure-storage-file-share (<13.0.0)\",\n + \ \"colorama (<0.5.0)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure + (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \"pyjwt + (<3.0.0)\",\n \"strictyaml (<2.0.0)\",\n \"tqdm + (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.17.0\"\n },\n + \ \"sha256Digest\": \"9870ae83638fdb11fc5de1d5d679e5a88cf6d64363d2f67883ee3eab86a802ec\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.17.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.17.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-mgmt-resource + (<23.0.0,>=3.0.0)\",\n \"azure-mgmt-resourcegraph + (<9.0.0,>=2.0.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<13.0.0)\",\n \"azure-storage-file-share (<13.0.0)\",\n + \ \"colorama (<0.5.0)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure + (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \"pyjwt + (<3.0.0)\",\n \"strictyaml (<2.0.0)\",\n \"tqdm + (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.17.1\"\n },\n + \ \"sha256Digest\": \"641cefde40910aca4db48f8fe1c0fda01d8112c04e93530959cf018561e3efcf\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.17.2-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.17.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-mgmt-resource + (<23.0.0,>=3.0.0)\",\n \"azure-mgmt-resourcegraph + (<9.0.0,>=2.0.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<13.0.0)\",\n \"azure-storage-file-share (<13.0.0)\",\n + \ \"colorama (<0.5.0)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure + (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \"pyjwt + (<3.0.0)\",\n \"strictyaml (<2.0.0)\",\n \"tqdm + (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.17.2\"\n },\n + \ \"sha256Digest\": \"6382717a4f9ef486fe5c9af2d2e1b5d1ec8e7c95428f966f67955a5644d462f8\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.18.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.18.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-mgmt-resource + (<23.0.0,>=3.0.0)\",\n \"azure-mgmt-resourcegraph + (<9.0.0,>=2.0.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<13.0.0)\",\n \"azure-storage-file-share (<13.0.0)\",\n + \ \"colorama (<0.5.0)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure + (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \"pyjwt + (<3.0.0)\",\n \"strictyaml (<2.0.0)\",\n \"tqdm + (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.18.0\"\n },\n + \ \"sha256Digest\": \"5a3d044ac51ce7950f71a6b2917ec90d67e029082620b3f02012b8767e3f758c\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.19.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.19.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-mgmt-resource + (<23.0.0,>=3.0.0)\",\n \"azure-mgmt-resourcegraph + (<9.0.0,>=2.0.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<13.0.0)\",\n \"azure-storage-file-share (<13.0.0)\",\n + \ \"colorama (<0.5.0)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure + (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \"pyjwt + (<3.0.0)\",\n \"strictyaml (<2.0.0)\",\n \"tqdm + (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.19.0\"\n },\n + \ \"sha256Digest\": \"cc5d785f5e1fc4bd014b7c4e1543c1c74b10010aa5d0205845afe55042030973\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.19.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.19.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-mgmt-resource + (<23.0.0,>=3.0.0)\",\n \"azure-mgmt-resourcegraph + (<9.0.0,>=2.0.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.10.0)\",\n \"azure-storage-file-datalake + (<13.0.0)\",\n \"azure-storage-file-share (<13.0.0)\",\n + \ \"colorama (<0.5.0)\",\n \"cryptography\",\n + \ \"docker\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"marshmallow + (<4.0.0,>=3.5)\",\n \"opencensus-ext-azure + (<2.0.0)\",\n \"pydash (<6.0.0)\",\n \"pyjwt + (<3.0.0)\",\n \"strictyaml (<2.0.0)\",\n \"tqdm + (<5.0.0)\",\n \"typing-extensions (<5.0.0)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.19.1\"\n },\n + \ \"sha256Digest\": \"808df1eda155eb202579e88f8cd97ff2bdea8585a5562d84a7819e6d928dea9f\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.20.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.20.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-common<2.0.0,>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (<13.0.0,>=12.10.0)\",\n + \ \"azure-storage-blob<13.0.0,>=12.10.0\",\n + \ \"azure-storage-file-datalake (<13.0.0)\",\n + \ \"azure-storage-file-datalake<13.0.0\",\n + \ \"azure-storage-file-share (<13.0.0)\",\n + \ \"azure-storage-file-share<13.0.0\",\n \"colorama + (<0.5.0)\",\n \"colorama<0.5.0\",\n \"cryptography\",\n + \ \"cryptography\",\n \"docker\",\n + \ \"docker\",\n \"isodate\",\n + \ \"isodate\",\n \"jsonschema + (<5.0.0,>=4.0.0)\",\n \"jsonschema<5.0.0,>=4.0.0\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"marshmallow<4.0.0,>=3.5\",\n + \ \"opencensus-ext-azure (<2.0.0)\",\n \"opencensus-ext-azure<2.0.0\",\n + \ \"pydash (<6.0.0)\",\n \"pydash<6.0.0\",\n + \ \"pyjwt (<3.0.0)\",\n \"pyjwt<3.0.0\",\n + \ \"strictyaml (<2.0.0)\",\n \"strictyaml<2.0.0\",\n + \ \"tqdm (<5.0.0)\",\n \"tqdm<5.0.0\",\n + \ \"typing-extensions (<5.0.0)\",\n \"typing-extensions<5.0.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.20.0\"\n },\n + \ \"sha256Digest\": \"dab4fa8889574743328aafd4cccf06eb22ec21ca7407c8397238ce75c00b39c4\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.21.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.21.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-common<2.0.0,>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (<13.0.0,>=12.10.0)\",\n + \ \"azure-storage-blob<13.0.0,>=12.10.0\",\n + \ \"azure-storage-file-datalake (<13.0.0)\",\n + \ \"azure-storage-file-datalake<13.0.0\",\n + \ \"azure-storage-file-share (<13.0.0)\",\n + \ \"azure-storage-file-share<13.0.0\",\n \"colorama + (<0.5.0)\",\n \"colorama<0.5.0\",\n \"cryptography\",\n + \ \"cryptography\",\n \"docker\",\n + \ \"docker\",\n \"isodate\",\n + \ \"isodate\",\n \"jsonschema + (<5.0.0,>=4.0.0)\",\n \"jsonschema<5.0.0,>=4.0.0\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"marshmallow<4.0.0,>=3.5\",\n + \ \"opencensus-ext-azure (<2.0.0)\",\n \"opencensus-ext-azure<2.0.0\",\n + \ \"pydash (<6.0.0)\",\n \"pydash<6.0.0\",\n + \ \"pyjwt (<3.0.0)\",\n \"pyjwt<3.0.0\",\n + \ \"strictyaml (<2.0.0)\",\n \"strictyaml<2.0.0\",\n + \ \"tqdm (<5.0.0)\",\n \"tqdm<5.0.0\",\n + \ \"typing-extensions (<5.0.0)\",\n \"typing-extensions<5.0.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.21.0\"\n },\n + \ \"sha256Digest\": \"28b393126e7dd4ad2c885688293f4c2ef4fc3af686ab44dd6d84fe1e61fe3c0a\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.21.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.21.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-common<2.0.0,>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (<13.0.0,>=12.10.0)\",\n + \ \"azure-storage-blob<13.0.0,>=12.10.0\",\n + \ \"azure-storage-file-datalake (<13.0.0)\",\n + \ \"azure-storage-file-datalake<13.0.0\",\n + \ \"azure-storage-file-share (<13.0.0)\",\n + \ \"azure-storage-file-share<13.0.0\",\n \"colorama + (<0.5.0)\",\n \"colorama<0.5.0\",\n \"cryptography\",\n + \ \"cryptography\",\n \"docker\",\n + \ \"docker\",\n \"isodate\",\n + \ \"isodate\",\n \"jsonschema + (<5.0.0,>=4.0.0)\",\n \"jsonschema<5.0.0,>=4.0.0\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"marshmallow<4.0.0,>=3.5\",\n + \ \"opencensus-ext-azure (<2.0.0)\",\n \"opencensus-ext-azure<2.0.0\",\n + \ \"pydash (<7.0.6,>=6.0.0)\",\n \"pydash<7.0.6,>=6.0.0\",\n + \ \"pyjwt (<3.0.0)\",\n \"pyjwt<3.0.0\",\n + \ \"strictyaml (<2.0.0)\",\n \"strictyaml<2.0.0\",\n + \ \"tqdm (<5.0.0)\",\n \"tqdm<5.0.0\",\n + \ \"typing-extensions (<5.0.0)\",\n \"typing-extensions<5.0.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.21.1\"\n },\n + \ \"sha256Digest\": \"74d26f61ec61654eea8002e33e6c7d2c412522f9dc12d9c46feb4a7dbc3dbf7a\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.22.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.22.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-common<2.0.0,>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (<13.0.0,>=12.10.0)\",\n + \ \"azure-storage-blob<13.0.0,>=12.10.0\",\n + \ \"azure-storage-file-datalake (<13.0.0)\",\n + \ \"azure-storage-file-datalake<13.0.0\",\n + \ \"azure-storage-file-share (<13.0.0)\",\n + \ \"azure-storage-file-share<13.0.0\",\n \"colorama + (<0.5.0)\",\n \"colorama<0.5.0\",\n \"cryptography\",\n + \ \"cryptography\",\n \"docker\",\n + \ \"docker\",\n \"isodate\",\n + \ \"isodate\",\n \"jsonschema + (<5.0.0,>=4.0.0)\",\n \"jsonschema<5.0.0,>=4.0.0\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"marshmallow<4.0.0,>=3.5\",\n + \ \"opencensus-ext-azure (<2.0.0)\",\n \"opencensus-ext-azure<2.0.0\",\n + \ \"pydash (<7.0.6,>=6.0.0)\",\n \"pydash<7.0.6,>=6.0.0\",\n + \ \"pyjwt (<3.0.0)\",\n \"pyjwt<3.0.0\",\n + \ \"strictyaml (<2.0.0)\",\n \"strictyaml<2.0.0\",\n + \ \"tqdm (<5.0.0)\",\n \"tqdm<5.0.0\",\n + \ \"typing-extensions (<5.0.0)\",\n \"typing-extensions<5.0.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.22.0\"\n },\n + \ \"sha256Digest\": \"f333b3149c72d8b9230d3e82f77cbbe4af159ba65de8acfb7ef4190797d6fa8a\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.23.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.23.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-common<2.0.0,>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (<13.0.0,>=12.10.0)\",\n + \ \"azure-storage-blob<13.0.0,>=12.10.0\",\n + \ \"azure-storage-file-datalake (<13.0.0)\",\n + \ \"azure-storage-file-datalake<13.0.0\",\n + \ \"azure-storage-file-share (<13.0.0)\",\n + \ \"azure-storage-file-share<13.0.0\",\n \"colorama + (<0.5.0)\",\n \"colorama<0.5.0\",\n \"cryptography\",\n + \ \"cryptography\",\n \"docker\",\n + \ \"docker\",\n \"isodate\",\n + \ \"isodate\",\n \"jsonschema + (<5.0.0,>=4.0.0)\",\n \"jsonschema<5.0.0,>=4.0.0\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"marshmallow<4.0.0,>=3.5\",\n + \ \"opencensus-ext-azure (<2.0.0)\",\n \"opencensus-ext-azure<2.0.0\",\n + \ \"pydash (<7.0.6,>=6.0.0)\",\n \"pydash<7.0.6,>=6.0.0\",\n + \ \"pyjwt (<3.0.0)\",\n \"pyjwt<3.0.0\",\n + \ \"strictyaml (<2.0.0)\",\n \"strictyaml<2.0.0\",\n + \ \"tqdm (<5.0.0)\",\n \"tqdm<5.0.0\",\n + \ \"typing-extensions (<5.0.0)\",\n \"typing-extensions<5.0.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.23.0\"\n },\n + \ \"sha256Digest\": \"c4cffb5dd82c8146d11c93330b6952933bbe6755cdf77e954cdf910717e65323\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.24.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.24.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-common<2.0.0,>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (<13.0.0,>=12.10.0)\",\n + \ \"azure-storage-blob<13.0.0,>=12.10.0\",\n + \ \"azure-storage-file-datalake (<13.0.0)\",\n + \ \"azure-storage-file-datalake<13.0.0\",\n + \ \"azure-storage-file-share (<13.0.0)\",\n + \ \"azure-storage-file-share<13.0.0\",\n \"azureml-dataprep-rslex + (>=2.22.0)\",\n \"azureml-dataprep-rslex>=2.22.0\",\n + \ \"colorama (<0.5.0)\",\n \"colorama<0.5.0\",\n + \ \"cryptography\",\n \"cryptography\",\n + \ \"docker\",\n \"docker\",\n + \ \"isodate\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"jsonschema<5.0.0,>=4.0.0\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"marshmallow<4.0.0,>=3.5\",\n + \ \"opencensus-ext-azure (<2.0.0)\",\n \"opencensus-ext-azure<2.0.0\",\n + \ \"opencensus-ext-logging (<=0.1.1)\",\n \"opencensus-ext-logging<=0.1.1\",\n + \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n + \ \"pyjwt (<3.0.0)\",\n \"pyjwt<3.0.0\",\n + \ \"strictyaml (<2.0.0)\",\n \"strictyaml<2.0.0\",\n + \ \"tqdm (<5.0.0)\",\n \"tqdm<5.0.0\",\n + \ \"typing-extensions (<5.0.0)\",\n \"typing-extensions<5.0.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.24.0\"\n },\n + \ \"sha256Digest\": \"a2ea8f8e04a65d810e95150de1cfd388d7e2d76a2614580be42970c8dc1f4014\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.25.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.25.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-common<2.0.0,>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (<13.0.0,>=12.10.0)\",\n + \ \"azure-storage-blob<13.0.0,>=12.10.0\",\n + \ \"azure-storage-file-datalake (<13.0.0)\",\n + \ \"azure-storage-file-datalake<13.0.0\",\n + \ \"azure-storage-file-share (<13.0.0)\",\n + \ \"azure-storage-file-share<13.0.0\",\n \"azureml-dataprep-rslex + (>=2.22.0)\",\n \"azureml-dataprep-rslex>=2.22.0\",\n + \ \"colorama (<0.5.0)\",\n \"colorama<0.5.0\",\n + \ \"cryptography\",\n \"cryptography\",\n + \ \"docker\",\n \"docker\",\n + \ \"isodate\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"jsonschema<5.0.0,>=4.0.0\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"marshmallow<4.0.0,>=3.5\",\n + \ \"opencensus-ext-azure (<2.0.0)\",\n \"opencensus-ext-azure<2.0.0\",\n + \ \"opencensus-ext-logging (<=0.1.1)\",\n \"opencensus-ext-logging<=0.1.1\",\n + \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n + \ \"pyjwt (<3.0.0)\",\n \"pyjwt<3.0.0\",\n + \ \"strictyaml (<2.0.0)\",\n \"strictyaml<2.0.0\",\n + \ \"tqdm (<5.0.0)\",\n \"tqdm<5.0.0\",\n + \ \"typing-extensions (<5.0.0)\",\n \"typing-extensions<5.0.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.25.0\"\n },\n + \ \"sha256Digest\": \"6df57410a255c610627192c3527ac2b15f492409800070623cd1ecb433fb750d\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.25.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.25.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-common<2.0.0,>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (<13.0.0,>=12.10.0)\",\n + \ \"azure-storage-blob<13.0.0,>=12.10.0\",\n + \ \"azure-storage-file-datalake (<13.0.0)\",\n + \ \"azure-storage-file-datalake<13.0.0\",\n + \ \"azure-storage-file-share (<13.0.0)\",\n + \ \"azure-storage-file-share<13.0.0\",\n \"colorama + (<0.5.0)\",\n \"colorama<0.5.0\",\n \"cryptography\",\n + \ \"cryptography\",\n \"docker\",\n + \ \"docker\",\n \"isodate\",\n + \ \"isodate\",\n \"jsonschema + (<5.0.0,>=4.0.0)\",\n \"jsonschema<5.0.0,>=4.0.0\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"marshmallow<4.0.0,>=3.5\",\n + \ \"opencensus-ext-azure (<2.0.0)\",\n \"opencensus-ext-azure<2.0.0\",\n + \ \"opencensus-ext-logging (<=0.1.1)\",\n \"opencensus-ext-logging<=0.1.1\",\n + \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n + \ \"pyjwt (<3.0.0)\",\n \"pyjwt<3.0.0\",\n + \ \"strictyaml (<2.0.0)\",\n \"strictyaml<2.0.0\",\n + \ \"tqdm (<5.0.0)\",\n \"tqdm<5.0.0\",\n + \ \"typing-extensions (<5.0.0)\",\n \"typing-extensions<5.0.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.25.1\"\n },\n + \ \"sha256Digest\": \"cf20d42f40871ccff101adc9da22ea1f3f61e2f941c777a7f21976e041a7daef\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.26.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.26.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (>=1.1)\",\n \"azure-common>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (>=12.10.0)\",\n \"azure-storage-blob>=12.10.0\",\n + \ \"azure-storage-file-datalake (>=12.2.0)\",\n + \ \"azure-storage-file-datalake>=12.2.0\",\n + \ \"azure-storage-file-share\",\n \"azure-storage-file-share\",\n + \ \"colorama\",\n \"colorama\",\n + \ \"cryptography\",\n \"cryptography\",\n + \ \"docker\",\n \"docker\",\n + \ \"isodate\",\n \"isodate\",\n + \ \"jsonschema (>=4.0.0)\",\n \"jsonschema>=4.0.0\",\n + \ \"marshmallow (>=3.5)\",\n \"marshmallow>=3.5\",\n + \ \"opencensus-ext-azure\",\n \"opencensus-ext-azure\",\n + \ \"opencensus-ext-logging\",\n \"opencensus-ext-logging\",\n + \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n + \ \"pyjwt\",\n \"pyjwt\",\n + \ \"strictyaml\",\n \"strictyaml\",\n + \ \"tqdm\",\n \"tqdm\",\n + \ \"typing-extensions\",\n \"typing-extensions\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.26.0\"\n },\n + \ \"sha256Digest\": \"63762ebec712d9d9aefdb95dd22f0720ca31c34b4ded0e16b701987e33fce506\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.26.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.26.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (>=1.1)\",\n \"azure-common>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (>=12.10.0)\",\n \"azure-storage-blob>=12.10.0\",\n + \ \"azure-storage-file-datalake (>=12.2.0)\",\n + \ \"azure-storage-file-datalake>=12.2.0\",\n + \ \"azure-storage-file-share\",\n \"azure-storage-file-share\",\n + \ \"colorama\",\n \"colorama\",\n + \ \"cryptography\",\n \"cryptography\",\n + \ \"docker\",\n \"docker\",\n + \ \"isodate\",\n \"isodate\",\n + \ \"jsonschema (>=4.0.0)\",\n \"jsonschema>=4.0.0\",\n + \ \"marshmallow (>=3.5)\",\n \"marshmallow>=3.5\",\n + \ \"opencensus-ext-azure\",\n \"opencensus-ext-azure\",\n + \ \"opencensus-ext-logging\",\n \"opencensus-ext-logging\",\n + \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n + \ \"pyjwt\",\n \"pyjwt\",\n + \ \"strictyaml\",\n \"strictyaml\",\n + \ \"tqdm\",\n \"tqdm\",\n + \ \"typing-extensions\",\n \"typing-extensions\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.26.1\"\n },\n + \ \"sha256Digest\": \"caac6f58f9f181cb94e4673f0e0affa10d8986ac84b30b6aa547a2d28901090e\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.27.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.27.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (>=1.1)\",\n \"azure-common>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (>=12.10.0)\",\n \"azure-storage-blob>=12.10.0\",\n + \ \"azure-storage-file-datalake (>=12.2.0)\",\n + \ \"azure-storage-file-datalake>=12.2.0\",\n + \ \"azure-storage-file-share\",\n \"azure-storage-file-share\",\n + \ \"colorama\",\n \"colorama\",\n + \ \"cryptography\",\n \"cryptography\",\n + \ \"docker\",\n \"docker\",\n + \ \"isodate\",\n \"isodate\",\n + \ \"jsonschema (>=4.0.0)\",\n \"jsonschema>=4.0.0\",\n + \ \"marshmallow (>=3.5)\",\n \"marshmallow>=3.5\",\n + \ \"opencensus-ext-azure\",\n \"opencensus-ext-azure\",\n + \ \"opencensus-ext-logging\",\n \"opencensus-ext-logging\",\n + \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n + \ \"pyjwt\",\n \"pyjwt\",\n + \ \"strictyaml\",\n \"strictyaml\",\n + \ \"tqdm\",\n \"tqdm\",\n + \ \"typing-extensions\",\n \"typing-extensions\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.27.0\"\n },\n + \ \"sha256Digest\": \"21d076e34544770fcdc9a7c0eec0de45087b5d47b2756029fecf66e18877fba1\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.27.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.27.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (>=1.1)\",\n \"azure-common>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (>=12.10.0)\",\n \"azure-storage-blob>=12.10.0\",\n + \ \"azure-storage-file-datalake (>=12.2.0)\",\n + \ \"azure-storage-file-datalake>=12.2.0\",\n + \ \"azure-storage-file-share\",\n \"azure-storage-file-share\",\n + \ \"colorama\",\n \"colorama\",\n + \ \"cryptography\",\n \"cryptography\",\n + \ \"docker\",\n \"docker\",\n + \ \"isodate\",\n \"isodate\",\n + \ \"jsonschema (>=4.0.0)\",\n \"jsonschema>=4.0.0\",\n + \ \"marshmallow (>=3.5)\",\n \"marshmallow>=3.5\",\n + \ \"opencensus-ext-azure\",\n \"opencensus-ext-azure\",\n + \ \"opencensus-ext-logging\",\n \"opencensus-ext-logging\",\n + \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n + \ \"pyjwt\",\n \"pyjwt\",\n + \ \"strictyaml\",\n \"strictyaml\",\n + \ \"tqdm\",\n \"tqdm\",\n + \ \"typing-extensions\",\n \"typing-extensions\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.27.1\"\n },\n + \ \"sha256Digest\": \"b53a8945ea6f26d2c1deb3e4b30a0b9ae09bf6e033662e71c40b700ac543c5d1\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.28.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.28.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (>=1.1)\",\n \"azure-common>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (>=12.10.0)\",\n \"azure-storage-blob>=12.10.0\",\n + \ \"azure-storage-file-datalake (>=12.2.0)\",\n + \ \"azure-storage-file-datalake>=12.2.0\",\n + \ \"azure-storage-file-share\",\n \"azure-storage-file-share\",\n + \ \"colorama\",\n \"colorama\",\n + \ \"cryptography\",\n \"cryptography\",\n + \ \"docker\",\n \"docker\",\n + \ \"isodate\",\n \"isodate\",\n + \ \"jsonschema (>=4.0.0)\",\n \"jsonschema>=4.0.0\",\n + \ \"marshmallow (>=3.5)\",\n \"marshmallow>=3.5\",\n + \ \"opencensus-ext-azure\",\n \"opencensus-ext-azure\",\n + \ \"opencensus-ext-logging\",\n \"opencensus-ext-logging\",\n + \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n + \ \"pyjwt\",\n \"pyjwt\",\n + \ \"strictyaml\",\n \"strictyaml\",\n + \ \"tqdm\",\n \"tqdm\",\n + \ \"typing-extensions\",\n \"typing-extensions\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.28.0\"\n },\n + \ \"sha256Digest\": \"177c08432719db3d50b2e17ee47fc6aa5eb8e2400c7eda1d9d9d123a7ecc3838\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.29.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.29.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (>=1.1)\",\n \"azure-common>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (>=12.10.0)\",\n \"azure-storage-blob>=12.10.0\",\n + \ \"azure-storage-file-datalake (>=12.2.0)\",\n + \ \"azure-storage-file-datalake>=12.2.0\",\n + \ \"azure-storage-file-share\",\n \"azure-storage-file-share\",\n + \ \"colorama\",\n \"colorama\",\n + \ \"cryptography\",\n \"cryptography\",\n + \ \"docker\",\n \"docker\",\n + \ \"isodate\",\n \"isodate\",\n + \ \"jsonschema (>=4.0.0)\",\n \"jsonschema>=4.0.0\",\n + \ \"marshmallow (>=3.5)\",\n \"marshmallow>=3.5\",\n + \ \"opencensus-ext-azure\",\n \"opencensus-ext-azure\",\n + \ \"opencensus-ext-logging\",\n \"opencensus-ext-logging\",\n + \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n + \ \"pyjwt\",\n \"pyjwt\",\n + \ \"strictyaml\",\n \"strictyaml\",\n + \ \"tqdm\",\n \"tqdm\",\n + \ \"typing-extensions\",\n \"typing-extensions\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.29.0\"\n },\n + \ \"sha256Digest\": \"b414015d511c63ab80067ac7c0f0b6760de17bc8174d9bc25ebb9a392cccdffc\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.30.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.30.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (>=1.1)\",\n \"azure-common>=1.1\",\n + \ \"azure-identity (==1.17.1)\",\n \"azure-identity==1.17.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (>=12.10.0)\",\n \"azure-storage-blob>=12.10.0\",\n + \ \"azure-storage-file-datalake (>=12.2.0)\",\n + \ \"azure-storage-file-datalake>=12.2.0\",\n + \ \"azure-storage-file-share\",\n \"azure-storage-file-share\",\n + \ \"colorama\",\n \"colorama\",\n + \ \"cryptography\",\n \"cryptography\",\n + \ \"docker\",\n \"docker\",\n + \ \"isodate\",\n \"isodate\",\n + \ \"jsonschema (>=4.0.0)\",\n \"jsonschema>=4.0.0\",\n + \ \"marshmallow (>=3.5)\",\n \"marshmallow>=3.5\",\n + \ \"opencensus-ext-azure\",\n \"opencensus-ext-azure\",\n + \ \"opencensus-ext-logging\",\n \"opencensus-ext-logging\",\n + \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n + \ \"pyjwt\",\n \"pyjwt\",\n + \ \"strictyaml\",\n \"strictyaml\",\n + \ \"tqdm\",\n \"tqdm\",\n + \ \"typing-extensions\",\n \"typing-extensions\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.30.0\"\n },\n + \ \"sha256Digest\": \"c0d685063ff76a850b21c6cd632f5a6ea216cf3fb718a663f11a83c0fd66699b\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.30.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.30.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (>=1.1)\",\n \"azure-common>=1.1\",\n + \ \"azure-identity (==1.17.1)\",\n \"azure-identity==1.17.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (>=12.10.0)\",\n \"azure-storage-blob>=12.10.0\",\n + \ \"azure-storage-file-datalake (>=12.2.0)\",\n + \ \"azure-storage-file-datalake>=12.2.0\",\n + \ \"azure-storage-file-share\",\n \"azure-storage-file-share\",\n + \ \"colorama\",\n \"colorama\",\n + \ \"cryptography\",\n \"cryptography\",\n + \ \"docker\",\n \"docker\",\n + \ \"isodate\",\n \"isodate\",\n + \ \"jsonschema (>=4.0.0)\",\n \"jsonschema>=4.0.0\",\n + \ \"marshmallow (>=3.5)\",\n \"marshmallow>=3.5\",\n + \ \"opencensus-ext-azure\",\n \"opencensus-ext-azure\",\n + \ \"opencensus-ext-logging\",\n \"opencensus-ext-logging\",\n + \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n + \ \"pyjwt\",\n \"pyjwt\",\n + \ \"strictyaml\",\n \"strictyaml\",\n + \ \"tqdm\",\n \"tqdm\",\n + \ \"typing-extensions\",\n \"typing-extensions\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.30.1\"\n },\n + \ \"sha256Digest\": \"b55f5c652a9cdc3c415f22d776d37b1745f2fdfe9f1cfc59047984cf67d33714\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.31.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.31.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (>=1.1)\",\n \"azure-common>=1.1\",\n + \ \"azure-identity (==1.17.1)\",\n \"azure-identity==1.17.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (>=12.10.0)\",\n \"azure-storage-blob>=12.10.0\",\n + \ \"azure-storage-file-datalake (>=12.2.0)\",\n + \ \"azure-storage-file-datalake>=12.2.0\",\n + \ \"azure-storage-file-share\",\n \"azure-storage-file-share\",\n + \ \"colorama\",\n \"colorama\",\n + \ \"cryptography\",\n \"cryptography\",\n + \ \"docker\",\n \"docker\",\n + \ \"isodate\",\n \"isodate\",\n + \ \"jsonschema (>=4.0.0)\",\n \"jsonschema>=4.0.0\",\n + \ \"marshmallow (>=3.5)\",\n \"marshmallow>=3.5\",\n + \ \"opencensus-ext-azure\",\n \"opencensus-ext-azure\",\n + \ \"opencensus-ext-logging\",\n \"opencensus-ext-logging\",\n + \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n + \ \"pyjwt\",\n \"pyjwt\",\n + \ \"strictyaml\",\n \"strictyaml\",\n + \ \"tqdm\",\n \"tqdm\",\n + \ \"typing-extensions\",\n \"typing-extensions\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.31.0\"\n },\n + \ \"sha256Digest\": \"ee15dbf021b31ab3165fc6922c5c9d8f21526caa279f714a6a0c112e8dfad264\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.31.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.31.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (>=1.1)\",\n \"azure-common>=1.1\",\n + \ \"azure-identity (==1.17.1)\",\n \"azure-identity==1.17.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (>=12.10.0)\",\n \"azure-storage-blob>=12.10.0\",\n + \ \"azure-storage-file-datalake (>=12.2.0)\",\n + \ \"azure-storage-file-datalake>=12.2.0\",\n + \ \"azure-storage-file-share\",\n \"azure-storage-file-share\",\n + \ \"colorama\",\n \"colorama\",\n + \ \"cryptography\",\n \"cryptography\",\n + \ \"docker\",\n \"docker\",\n + \ \"isodate\",\n \"isodate\",\n + \ \"jsonschema (>=4.0.0)\",\n \"jsonschema>=4.0.0\",\n + \ \"marshmallow (>=3.5)\",\n \"marshmallow>=3.5\",\n + \ \"opencensus-ext-azure\",\n \"opencensus-ext-azure\",\n + \ \"opencensus-ext-logging\",\n \"opencensus-ext-logging\",\n + \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n + \ \"pyjwt\",\n \"pyjwt\",\n + \ \"strictyaml\",\n \"strictyaml\",\n + \ \"tqdm\",\n \"tqdm\",\n + \ \"typing-extensions\",\n \"typing-extensions\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.31.1\"\n },\n + \ \"sha256Digest\": \"b296d51cc1bf359d7a0adda6b1d941582d3b12bf90a6475df9e653b9ddca7c68\"\n + \ }\n ],\n \"mobile-network\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mobile_network-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"mobile_network-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/mobile-network\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mobile-network\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MobileNetwork Extension.\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"aa356521cae8df8578ef5e0b58274862bc602739bec3ca4385f45a5cc0e77c5a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mobile_network-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"mobile_network-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/mobile-network\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mobile-network\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MobileNetwork Extension.\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"2efa62e8df2cab2ba2f3e14f9d5193c88d26f43bf335f77054e332d232b967b0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mobile_network-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"mobile_network-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/mobile-network\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mobile-network\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MobileNetwork Extension.\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"1ecaaa16aa6f5d1b23b4a041129767e5ebf5e46ed373c162af2914245c6f348b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mobile_network-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"mobile_network-0.2.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/mobile-network\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mobile-network\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MobileNetwork Extension.\",\n \"version\": \"0.2.1\"\n + \ },\n \"sha256Digest\": \"66bd39f687c2ac030ab6bd44b8746ec8d64c4804b44592c0bb1ffda837dce22b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mobile_network-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"mobile_network-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/mobile-network\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mobile-network\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MobileNetwork Extension.\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"2d9572a4ed706df8f626c62036ad22f46a15b113273f8ff9b06313a380a27f56\"\n + \ }\n ],\n \"monitor-control-service\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/monitor_control_service-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"monitor_control_service-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/monitor-control-service\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"monitor-control-service\",\n \"summary\": \"Microsoft + Azure Command-Line Tools MonitorClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"71604e21a29c5bd84916a890cdf6e09dd7a0623867871d5ac8a0f5c2bed179dd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/monitor_control_service-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"monitor_control_service-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/monitor-control-service\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"monitor-control-service\",\n \"summary\": \"Microsoft + Azure Command-Line Tools MonitorClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"a9996879f536220d71b5fe21e366ad22e4898e73761a8013d59981ebae6f0b21\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/monitor_control_service-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"monitor_control_service-0.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/monitor-control-service\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"monitor-control-service\",\n \"summary\": \"Microsoft + Azure Command-Line Tools MonitorClient Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"518bd5b37083151b2b29a1f3895b0b150abb3116210d77d43eed121ee8055a60\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/monitor_control_service-0.3.1-py3-none-any.whl\",\n + \ \"filename\": \"monitor_control_service-0.3.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/monitor-control-service\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"monitor-control-service\",\n \"summary\": \"Microsoft + Azure Command-Line Tools MonitorClient Extension\",\n \"version\": + \"0.3.1\"\n },\n \"sha256Digest\": \"bf6b5dc6180748902494ee7cd7c3065b056e386789e168b273ebc92bfde3515a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/monitor_control_service-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"monitor_control_service-0.4.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/monitor-control-service\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"monitor-control-service\",\n \"summary\": \"Microsoft + Azure Command-Line Tools MonitorClient Extension\",\n \"version\": + \"0.4.0\"\n },\n \"sha256Digest\": \"e9b6a95187afe4dc31dca5121e7a9872377f70e12c4bc10080770bdbc0304e4d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/monitor_control_service-0.4.1-py3-none-any.whl\",\n + \ \"filename\": \"monitor_control_service-0.4.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/monitor-control-service\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"monitor-control-service\",\n \"summary\": \"Microsoft + Azure Command-Line Tools MonitorClient Extension\",\n \"version\": + \"0.4.1\"\n },\n \"sha256Digest\": \"e4af764b2ec9091aa928a82bdcf27d516a19a12c30e63546c4e3a9cb3e8161ed\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/monitor_control_service-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"monitor_control_service-1.0.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/monitor-control-service\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"monitor-control-service\",\n \"summary\": \"Microsoft + Azure Command-Line Tools MonitorClient Extension\",\n \"version\": + \"1.0.1\"\n },\n \"sha256Digest\": \"66475eb79c577ea566c74f986b9ef6af936580beb02dde622701370323d430a3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/monitor_control_service-1.0.2-py3-none-any.whl\",\n + \ \"filename\": \"monitor_control_service-1.0.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/monitor-control-service\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"monitor-control-service\",\n \"summary\": \"Microsoft + Azure Command-Line Tools MonitorClient Extension\",\n \"version\": + \"1.0.2\"\n },\n \"sha256Digest\": \"e0a271c65997120e0022baf51e63c2feec4df3235258a6243a60ff069315b84a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/monitor_control_service-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"monitor_control_service-1.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/monitor-control-service\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"monitor-control-service\",\n \"summary\": \"Microsoft + Azure Command-Line Tools MonitorClient Extension\",\n \"version\": + \"1.1.0\"\n },\n \"sha256Digest\": \"d155c671cd3ba0799c7ecba590804c557e832f3714f7ce247fc1e34fa61f2225\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/monitor_control_service-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"monitor_control_service-1.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/monitor-control-service\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"monitor-control-service\",\n \"summary\": \"Microsoft + Azure Command-Line Tools MonitorClient Extension\",\n \"version\": + \"1.2.0\"\n },\n \"sha256Digest\": \"3151a341845d053a4be45d9b7c04e1e15b88503ab6b110163a12b9aee6fd3cd9\"\n + \ }\n ],\n \"monitor-pipeline-group\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/monitor_pipeline_group-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"monitor_pipeline_group-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/monitor-pipeline-group\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"monitor-pipeline-group\",\n \"summary\": \"Microsoft + Azure Command-Line Tools MonitorPipelineGroup Extension.\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"cf31f9e3fa9458716f0c3d1c15698ef79b707c5bd7d146773d2b2afe42e64c29\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/monitor_pipeline_group-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"monitor_pipeline_group-1.0.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/monitor-pipeline-group\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"monitor-pipeline-group\",\n \"summary\": \"Microsoft + Azure Command-Line Tools MonitorPipelineGroup Extension.\",\n \"version\": + \"1.0.0b2\"\n },\n \"sha256Digest\": \"b247c7409eef1a7299b5a0e60069a33cbb6ec4d7f21c4e38a718b552c97d5fdb\"\n + \ }\n ],\n \"multicloud-connector\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/multicloud_connector-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"multicloud_connector-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/multicloud-connector\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"multicloud-connector\",\n \"summary\": \"Microsoft Azure + Command-Line Tools MulticloudConnector Extension.\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"ad84350162ae877287f8a151920b3c4bdc6375dd419dd6101c2702db606a5d19\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/multicloud_connector-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"multicloud_connector-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/multicloud-connector\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"multicloud-connector\",\n \"summary\": \"Microsoft Azure + Command-Line Tools MulticloudConnector Extension.\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"f066fde3af8aec3c0c9b9b3919139472261192f62fc6007bac1e58dcc467e6df\"\n + \ }\n ],\n \"neon\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/neon-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"neon-1.0.0b1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/neon\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"neon\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Neon Extension.\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"240dc3387ce79e98ead27b77d2d0162c7494c94bfa8a17d1b7841ae25e436a3b\"\n + \ }\n ],\n \"netappfiles-preview\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/netappfiles_preview-0.3.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"netappfiles_preview-0.3.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.56\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/netappfiles-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"netappfiles-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"msrest\"\n ]\n + \ }\n ],\n \"summary\": + \"Provides a preview for upcoming Azure NetApp Files (ANF) features.\",\n + \ \"version\": \"0.3.2\"\n },\n \"sha256Digest\": + \"d581bfefe3eb7fbceeed12c192ebdf5993fcf04ede7267d053aa416596bd0b53\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/netappfiles_preview-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"netappfiles_preview-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/netappfiles-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"netappfiles-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"msrest\",\n \"msrest\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Provides a preview for upcoming Azure NetApp + Files (ANF) features.\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"a504381f819be5efef3ad0c48310c5736203612b78c052d261df21b80ccc95a9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/netappfiles_preview-1.0.0b2-py2.py3-none-any.whl\",\n + \ \"filename\": \"netappfiles_preview-1.0.0b2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/netappfiles-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"netappfiles-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"msrest\",\n \"msrest\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Provides a preview for upcoming Azure NetApp + Files (ANF) features.\",\n \"version\": \"1.0.0b2\"\n },\n + \ \"sha256Digest\": \"e10b4d543deafe0a04493b7abfa3e905cd008551b611af3a2637269b46722edc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/netappfiles_preview-1.0.0b3-py2.py3-none-any.whl\",\n + \ \"filename\": \"netappfiles_preview-1.0.0b3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/netappfiles-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"netappfiles-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"msrest\",\n \"msrest\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Provides a preview for upcoming Azure NetApp + Files (ANF) features.\",\n \"version\": \"1.0.0b3\"\n },\n + \ \"sha256Digest\": \"937def18249801f9b52edba9004ea0710e45cae9b9853276e0811bf41206da7a\"\n + \ }\n ],\n \"network-analytics\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/network_analytics-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"network_analytics-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/network-analytics\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"network-analytics\",\n \"summary\": \"Microsoft Azure + Command-Line Tools NetworkAnalytics Extension.\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"c8d7e195f913298ac03ef8eb1f8d7fb09526956d3eb750a8cd447ae8f61d4317\"\n + \ }\n ],\n \"networkcloud\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"networkcloud-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/networkcloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"networkcloud\",\n \"summary\": \"Support for Azure Operator + Nexus network cloud commands based on 2022-12-12-preview API version.\",\n + \ \"version\": \"0.3.0\"\n },\n \"sha256Digest\": + \"29e25ecccbfe5776f20d925c52b70f390c1af7818ed6aa100415fd509c960a9e\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"networkcloud-0.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/networkcloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"networkcloud\",\n \"summary\": \"Support for Azure Operator + Nexus network cloud commands based on 2023-05-01-preview API version.\",\n + \ \"version\": \"0.4.0\"\n },\n \"sha256Digest\": + \"50041fee91ed70f6754058f24aad2e13718ba821493719fd907b7df99bc4ccbb\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-0.4.1-py3-none-any.whl\",\n + \ \"filename\": \"networkcloud-0.4.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/networkcloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"networkcloud\",\n \"summary\": \"Support for Azure Operator + Nexus network cloud commands based on 2023-05-01-preview API version.\",\n + \ \"version\": \"0.4.1\"\n },\n \"sha256Digest\": + \"6a7c8154589ae18c2426f77db3c907190eb60b6c6fbeb77d845bf1b487c5e5b2\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"networkcloud-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/networkcloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"networkcloud\",\n \"summary\": \"Support for Azure Operator + Nexus network cloud commands based on 2023-07-01 API version.\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"a938d111bc2f0ad1d3c66f8c1039a4e0a2518ae8d2c6d57e98c6bb5892444e91\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"networkcloud-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/networkcloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"networkcloud\",\n \"summary\": \"Support for Azure Operator + Nexus network cloud commands based on 2023-07-01 API version.\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"c1df70aa89c9e8e4a0662621a55b79f2b4ed5217c4841ca332570e7f7c2899d2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"networkcloud-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/networkcloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"networkcloud\",\n \"summary\": \"Support for Azure Operator + Nexus network cloud commands based on 2023-07-01 API version.\",\n \"version\": + \"1.1.0\"\n },\n \"sha256Digest\": \"a6e4d24b38a6af79adf521bd6329e14d700ae52dbb9481adbc9b853458db2da5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-2.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"networkcloud-2.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/networkcloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"networkcloud\",\n \"summary\": \"Support for Azure Operator + Nexus network cloud commands based on 2023-10-01-preview API version.\",\n + \ \"version\": \"2.0.0b1\"\n },\n \"sha256Digest\": + \"480d59d3b807ee4a77a02523c69b6a8af690350fea87ed5a1b4fd7e2c393b8af\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-2.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"networkcloud-2.0.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/networkcloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"networkcloud\",\n \"summary\": \"Support for Azure Operator + Nexus network cloud commands based on 2023-10-01-preview API version.\",\n + \ \"version\": \"2.0.0b2\"\n },\n \"sha256Digest\": + \"28c43560516e254ab60708c0ac8cf868795ce76e4aa9da1548584b22331af467\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-2.0.0b3-py3-none-any.whl\",\n + \ \"filename\": \"networkcloud-2.0.0b3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/networkcloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"networkcloud\",\n \"summary\": \"Support for Azure Operator + Nexus network cloud commands based on 2024-06-01-preview API version.\",\n + \ \"version\": \"2.0.0b3\"\n },\n \"sha256Digest\": + \"8ff5af8e70f7f9c62300b1212b89012cb45ac02342cae6e6e46df0d2379bb55f\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-2.0.0b4-py3-none-any.whl\",\n + \ \"filename\": \"networkcloud-2.0.0b4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/networkcloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"networkcloud\",\n \"summary\": \"Support for Azure Operator + Nexus network cloud commands based on 2024-07-01 API version.\",\n \"version\": + \"2.0.0b4\"\n },\n \"sha256Digest\": \"06707a008405739a5639230f3fd094031084a69f867648503aed4039d118ad9f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-2.0.0b5-py3-none-any.whl\",\n + \ \"filename\": \"networkcloud-2.0.0b5-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/networkcloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"networkcloud\",\n \"summary\": \"Support for Azure Operator + Nexus network cloud commands based on 2024-07-01 API version.\",\n \"version\": + \"2.0.0b5\"\n },\n \"sha256Digest\": \"ac72cfc54ed35834ca6cd5c727a0fdd71e4943bcd66e65cd0ff607e8ae495c7a\"\n + \ }\n ],\n \"new-relic\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/new_relic-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"new_relic-1.0.0b1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/new-relic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"new-relic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools NewRelic Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"9ce69f1684cea14acba0f2fdb473e47e0a06745e383bb5144954c5e85e416199\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/new_relic-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"new_relic-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/new-relic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"new-relic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools NewRelic Extension.\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"3105310aec2321d429f068e74dfe16b0b64c7100aa51eaef2c11765971ea6f5a\"\n + \ }\n ],\n \"next\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/next-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"next-0.1.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.19.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"next\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Next Extension\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"038d673501dd3b3c04314d0f69f01cfdd52e6ca3f44820a45d20dc3dd58317dd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/next-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"next-0.1.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.20.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"next\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Next Extension\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"dee069e3a0efafbec8154fbf91ced5cee1f782599a726ac5937b9adc297d3c8a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/next-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"next-0.1.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.20.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"next\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Next Extension\",\n \"version\": \"0.1.2\"\n },\n + \ \"sha256Digest\": \"3bd9bc4ddf96fdb0ce17da57700fd40fc2a7aca56c0277ff95376256baeab4c8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/next-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"next-0.1.3-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.20.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/next\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"next\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Next Extension\",\n \"version\": \"0.1.3\"\n },\n + \ \"sha256Digest\": \"83c4e03427f190203e094c14e4f7e79cec989f1277e16b9256bb9fe688aa5e07\"\n + \ }\n ],\n \"nexusidentity\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/nexusidentity-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"nexusidentity-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.59.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/nexusidentity\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"nexusidentity\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-identity\",\n \"azure-identity\",\n + \ \"msgraph-sdk\",\n \"msgraph-sdk\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Nexusidentity + Extension\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"56beac87256cef8a0815f106e57e968ca20d5ee3bdf3ecdef3fa706758622417\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nexusidentity-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"nexusidentity-1.0.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/nexusidentity\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"nexusidentity\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-identity (==1.17.1)\",\n \"azure-identity==1.17.1\",\n + \ \"msgraph-sdk\",\n \"msgraph-sdk\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Nexusidentity + Extension\",\n \"version\": \"1.0.0b2\"\n },\n + \ \"sha256Digest\": \"44f8bf08d841ea61af58acb38ca44aea76dc26d46484ec23dea95338097814ac\"\n + \ }\n ],\n \"nginx\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/nginx-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"nginx-0.1.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.40.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"nginx\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Nginx Extension\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"a5b017c415c4a030b2c63b2145e6476f789f860a0cb0385b6e336e7572bef73b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nginx-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"nginx-0.1.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.40.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"nginx\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Nginx Extension\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"3234129a26043a68e80ee1ae31c36e7ef8b2691a096cd6fc557e3a46fea8170e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nginx-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"nginx-1.0.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.55.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"nginx\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Nginx Extension\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"af877e67f99d7b147efdd4d4c566a13834692823d47d6fdfc5d107c20bb8ba7a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nginx-2.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"nginx-2.0.0b1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.58.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"nginx\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Nginx Extension\",\n \"version\": \"2.0.0b1\"\n },\n + \ \"sha256Digest\": \"496a898173f71aafe056dfcd036f8c4b9f72215d06f3c31bad9a484ab99f8602\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nginx-2.0.0b2-py2.py3-none-any.whl\",\n + \ \"filename\": \"nginx-2.0.0b2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.58.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"nginx\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Nginx Extension\",\n \"version\": \"2.0.0b2\"\n },\n + \ \"sha256Digest\": \"7f26070f348d7af3132974f4393fb993eba5293ae18494af6a868e85aa34103c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nginx-2.0.0b3-py2.py3-none-any.whl\",\n + \ \"filename\": \"nginx-2.0.0b3-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.60.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"nginx\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Nginx Extension\",\n \"version\": \"2.0.0b3\"\n },\n + \ \"sha256Digest\": \"1cabdd210d0d7d0ecad435c161a1bcc499deea2002946a7879079b726ea9946e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nginx-2.0.0b4-py2.py3-none-any.whl\",\n + \ \"filename\": \"nginx-2.0.0b4-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.60.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"nginx\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Nginx Extension\",\n \"version\": \"2.0.0b4\"\n },\n + \ \"sha256Digest\": \"5327d108083910acbc066b46b8aaf7cb9355bc6e82b4857c706e9990074b512c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nginx-2.0.0b5-py2.py3-none-any.whl\",\n + \ \"filename\": \"nginx-2.0.0b5-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"nginx\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Nginx Extension\",\n \"version\": \"2.0.0b5\"\n },\n + \ \"sha256Digest\": \"92e0b817bb863173da129abd3c326e058df3afce0fbb9851e6ff8ccea3c04773\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nginx-2.0.0b6-py2.py3-none-any.whl\",\n + \ \"filename\": \"nginx-2.0.0b6-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.64.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"nginx\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Nginx Extension\",\n \"version\": \"2.0.0b6\"\n },\n + \ \"sha256Digest\": \"d94f77c12ce6945c823f7efa84238e398b5aec878156bbdf3112f0def1eb8960\"\n + \ }\n ],\n \"notification-hub\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/notification_hub-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"notification_hub-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"notification-hub\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Notification Hub Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"6f8ae57c43f53380db7944d5244121b3b757f996f6ecca394696106fd2c1d875\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/notification_hub-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"notification_hub-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"notification-hub\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Notification Hub Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"a8d0333e6c8ecc8846dcf162f01ce3d1f7a84cc4a431ec44cb5f48bd498b6d1b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/notification_hub-1.0.0a1-py3-none-any.whl\",\n + \ \"filename\": \"notification_hub-1.0.0a1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/notification-hub\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"notification-hub\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Notification Hub Extension\",\n \"version\": + \"1.0.0a1\"\n },\n \"sha256Digest\": \"a03751b715700e0d18a38e808bfeed164335024c9608c4bfd53aeacc731d1099\"\n + \ }\n ],\n \"nsp\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/nsp-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"nsp-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/nsp\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"nsp\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Nsp Extension.\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"14d995890f7f7bf14ce4a92a8d0de0252595d017ead7a49bffecbb741c074fb5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nsp-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"nsp-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/nsp\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"nsp\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Nsp Extension.\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"c6227fc8fcf084c37effb6c22c27b2b4843704e231177776c938e3461ebe6b2d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nsp-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"nsp-0.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/nsp\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"nsp\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Nsp Extension.\",\n \"version\": \"0.2.1\"\n },\n + \ \"sha256Digest\": \"3aaf9a245ff82bf8212fd28767d61089ffa13285447964f97e7b8aa8547509ac\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nsp-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"nsp-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.54.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/nsp\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"nsp\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Nsp Extension.\",\n \"version\": \"0.3.0\"\n },\n + \ \"sha256Digest\": \"3e53051a70693a5da8c563118d0f695efc8465eab769ca64416fc8a16ba6e72a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nsp-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"nsp-1.0.0b2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/nsp\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"nsp\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Nsp Extension.\",\n \"version\": \"1.0.0b2\"\n },\n + \ \"sha256Digest\": \"febfce38fc449daa67c7ad8410e7fa250f7f39afb5f870496ce045bb74935bcd\"\n + \ }\n ],\n \"offazure\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/offazure-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"offazure-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/offazure\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"offazure\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureMigrateV2 Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"1918817070ae9e0ceef57b93366d18b6e8bf577fd632e7da999e1e2abbb53656\"\n + \ }\n ],\n \"oracle-database\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/oracle_database-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"oracle_database-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/oracle-database\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"oracle-database\",\n \"summary\": \"Microsoft Azure Command-Line + Tools OracleDatabase Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"058c3de6c1e103ff0c62a188b1c606a35097a6652cb7eb6c3e5b77f77e15b5b1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/oracle_database-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"oracle_database-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/oracle-database\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"oracle-database\",\n \"summary\": \"Microsoft Azure Command-Line + Tools OracleDatabase Extension.\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"0ad716e117359e81427f8c91482f2592031877964c6952e768b66148db54dbce\"\n + \ }\n ],\n \"orbital\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/orbital-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"orbital-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.39.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/orbital\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"orbital\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Orbital Extension.\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"4259fb8ff560440d63251cc9721bb3f2283452f2399134514611f886fa350f37\"\n + \ }\n ],\n \"palo-alto-networks\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/palo_alto_networks-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"palo_alto_networks-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.50.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/palo-alto-networks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"palo-alto-networks\",\n \"summary\": \"Microsoft Azure + Command-Line Tools PaloAltoNetworks Extension.\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"6c6856f9af7e57202a063c072e23b88bc6d337a5a7440c43cc9e01fa6833533e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/palo_alto_networks-1.1.1b1-py3-none-any.whl\",\n + \ \"filename\": \"palo_alto_networks-1.1.1b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/palo-alto-networks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"palo-alto-networks\",\n \"summary\": \"Microsoft Azure + Command-Line Tools PaloAltoNetworks Extension.\",\n \"version\": + \"1.1.1b1\"\n },\n \"sha256Digest\": \"8d4f6a4b72366bd57780bd158d6c25b363999e1a13ea85d491809cc9a4d29608\"\n + \ }\n ],\n \"partnercenter\": [\n {\n \"downloadUrl\": + \"https://github.com/Azure/partnercenter-cli-extension/releases/download/v0.1.1-alpha/partnercenter-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"partnercenter-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.43.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/partnercenter-cli-extension/tree/main/partnercenter\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"partnercenter\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-storage-blob\",\n \"docker\",\n + \ \"pydantic\",\n \"requests\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure CLI Extension for Partner + Center\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"39a510a25a2805f188909d0b24139cebbce36f734ee00b7b067851fe777ef75f\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/partnercenter-cli-extension/releases/download/v0.1.2-alpha/partnercenter-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"partnercenter-0.1.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.43.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/partnercenter-cli-extension/tree/main/partnercenter\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"partnercenter\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-storage-blob\",\n \"docker\",\n + \ \"pydantic\",\n \"requests\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure CLI Extension for Partner + Center\",\n \"version\": \"0.1.2\"\n },\n + \ \"sha256Digest\": \"a2e4ef513b74c138c3c445c6c494eb9e4677338f53e1b5a634a280b57bd70fc5\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/partnercenter-cli-extension/releases/download/v0.2.3-alpha/partnercenter-0.2.3-py3-none-any.whl\",\n + \ \"filename\": \"partnercenter-0.2.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/partnercenter-cli-extension/tree/main/partnercenter\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"partnercenter\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-storage-blob\",\n \"docker\",\n + \ \"pydantic\",\n \"requests\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure CLI Extension for Partner + Center\",\n \"version\": \"0.2.3\"\n },\n + \ \"sha256Digest\": \"5e364c5f375e9cdbbd7117c571d45ef434648c0f68b894fd1ebcf6cec26e4798\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/partnercenter-cli-extension/releases/download/v0.2.4-alpha/partnercenter-0.2.4-py3-none-any.whl\",\n + \ \"filename\": \"partnercenter-0.2.4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/partnercenter-cli-extension/tree/main/partnercenter\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"partnercenter\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-storage-blob\",\n \"docker\",\n + \ \"pydantic (<2)\",\n \"requests\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure CLI Extension for Partner + Center\",\n \"version\": \"0.2.4\"\n },\n + \ \"sha256Digest\": \"daca7562e92ddeb0195d2e85bdad22f0873010359ada146b1bfd8e415244cac9\"\n + \ }\n ],\n \"peering\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/peering-0.1.0rc2-py2.py3-none-any.whl\",\n + \ \"filename\": \"peering-0.1.0rc2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"peering\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Peering Extension\",\n \"version\": \"0.1.0rc2\"\n + \ },\n \"sha256Digest\": \"1b73d60427e5e84971e244a5884b7f14e0e05e65792e9ecc7483695d1b596992\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/peering-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"peering-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"peering\",\n \"summary\": \"Microsoft Azure Command-Line + Tools PeeringManagementClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"dd301c22107f961692a4acdbb5a98d28a7e86e7fb8619f2322884a2bc5507241\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/peering-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"peering-0.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/peering\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"peering\",\n \"summary\": \"Microsoft Azure Command-Line + Tools PeeringManagementClient Extension\",\n \"version\": + \"0.2.1\"\n },\n \"sha256Digest\": \"b068c12b47f17304af51431a2ae975339b7d4601a180e83916efae73d7c42600\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/peering-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"peering-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/peering\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"peering\",\n \"summary\": \"Microsoft Azure Command-Line + Tools PeeringManagementClient Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"fe4e3ba85c1f65966a059291e46ebeb7c956f28da2b15b541b0492765b623992\"\n + \ }\n ],\n \"portal\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/portal-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"portal-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"portal\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Portal Extension\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"89fdc138db22055fc09cf30a46050205a9e842d8fe386a3d8773ea563b074083\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/portal-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"portal-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"portal\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Portal Extension\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"a3fc71fd6f0390850a60947cc1bff31d6346fc3f79e3ac8947add577c10c31a3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/portal-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"portal-0.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/portal\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"portal\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Portal Extension\",\n \"version\": \"0.1.2\"\n },\n + \ \"sha256Digest\": \"0e09b913c7b691496f46a131e608dcc1d37fc887c900d16ac87ec6a4c1e0b646\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/portal-0.1.3-py3-none-any.whl\",\n + \ \"filename\": \"portal-0.1.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/portal\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"portal\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Portal Extension\",\n \"version\": \"0.1.3\"\n },\n + \ \"sha256Digest\": \"3c3ebe23f59db5f2d286ca52cf8cfbbc5983ce8073622de11a35dab95800a996\"\n + \ }\n ],\n \"powerbidedicated\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/powerbidedicated-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"powerbidedicated-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"3.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"powerbidedicated\",\n \"summary\": \"Microsoft Azure + Command-Line Tools PowerBIDedicated Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"a7373b5005814f9d6d0151622c8356b37758a7548aa2fb8cad3ddc4368c5e05f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/powerbidedicated-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"powerbidedicated-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"3.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/powerbidedicated\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"powerbidedicated\",\n \"summary\": \"Microsoft Azure + Command-Line Tools PowerBIDedicated Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"127cb7b69076d07254aee3b57720409455e601ad431d3e12d713d886578ce1bf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/powerbidedicated-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"powerbidedicated-0.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"3.0.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/powerbidedicated\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"powerbidedicated\",\n \"summary\": \"Microsoft Azure + Command-Line Tools PowerBIDedicated Extension\",\n \"version\": + \"0.2.1\"\n },\n \"sha256Digest\": \"be1b824d4e4561ccfccebba9453d27a4542e6d4e6471eabe3def15bb1b35ca6f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/powerbidedicated-0.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"powerbidedicated-0.2.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.49.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/powerbidedicated\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"powerbidedicated\",\n \"summary\": \"Microsoft Azure + Command-Line Tools PowerBIDedicated Extension\",\n \"version\": + \"0.2.2\"\n },\n \"sha256Digest\": \"2f87e7006a1670a8c7ec9cce7aa90adaa55871f183e7fedc44509eaea40546fa\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/powerbidedicated-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"powerbidedicated-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.56.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/powerbidedicated\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"powerbidedicated\",\n \"summary\": \"Microsoft Azure + Command-Line Tools PowerBIDedicated Extension\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"e1e58bb6f57edde4793f4c66a0c10a2776f842172878162385f2b1d21539de6e\"\n + \ }\n ],\n \"providerhub\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/providerhub-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"providerhub-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/providerhub\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"providerhub\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Providerhub Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"9385d61fe18f10c379e7a7c57a1ded34dd0f5b15bcf021777e4d51d288b703fe\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/providerhub-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"providerhub-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/providerhub\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"providerhub\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ProviderHub Extension\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"9cda8fed546254987e5c5f872b4119105796c89de8d65d385638dac155bdf01e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/providerhub-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"providerhub-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/providerhub\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"providerhub\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ProviderHub Extension\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"7b93cb7ecb1fa3a520909d45e6e6597c8ba7daac4fbc1a26c3de66043678dd0d\"\n + \ }\n ],\n \"purview\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/purview-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"purview-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/purview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"purview\",\n \"summary\": \"Microsoft Azure Command-Line + Tools PurviewManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"706cc2550fbd07b8b676345c2f26c5ba66550905bc8ec224c6c4e5637c497266\"\n + \ }\n ],\n \"quantum\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.5.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"ac71362fb4834e02f26644403b4aac166def6488474e4f201ce3243b12b2424f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.5.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"49f14768df82cf63f8be1a4bdc69ecd531149c7603f05d1951431c006dcc3660\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.5.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.3.0\"\n },\n + \ \"sha256Digest\": \"2564b05153b85eab96b58a2f8f3211241d6e07bdbe9a13f8feb74d09e1b80832\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.5.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.4.0\"\n },\n + \ \"sha256Digest\": \"90b537ba647b0eecda70ef8cbe4823d4199429f4ae436808434180d715448769\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.5.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.5.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.5.0\"\n },\n + \ \"sha256Digest\": \"257dfba42b6505dfa66721ddba9197da7f769f2e26d7c4bba9bcc729a72e49b7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.6.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.6.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.6.0\"\n },\n + \ \"sha256Digest\": \"407d45555dc239d16882b99d52634d2726057ffbe404e008d6181a5cb0f212cd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.6.1-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.6.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.6.1\"\n },\n + \ \"sha256Digest\": \"5306a838f3c1c36d80cf7945ee8f74d472a6d1e19c45e47f233b22671953edfb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.7.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.7.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.7.0\"\n },\n + \ \"sha256Digest\": \"e3658e4549ce96f262d60c3ae357c3c057b8678cd01060a6eea0cd715a6d2e45\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.8.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.8.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.8.0\"\n },\n + \ \"sha256Digest\": \"cab7430782efaf49e865f6c217b911e27b3868ec5df53e70614aa256b3ba91ca\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.9.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.9.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.9.0\"\n },\n + \ \"sha256Digest\": \"214d6303c3381a8a328a15ca3bb8f77f68c36cf71d83cdaa41be87b2af6e28fe\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.10.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.10.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.10.0\"\n + \ },\n \"sha256Digest\": \"c280a1eda5a9eee853239cac1ac2c610d159d59be5ac29fa7d5a4a1a3d7cbbde\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.11.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.11.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.11.0\"\n + \ },\n \"sha256Digest\": \"96d85f1c7675e4d8a42384de348cad66e80343b6ae26142ebdb19d753c45fc2e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.12.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.12.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.12.0\"\n + \ },\n \"sha256Digest\": \"ffc62c0663843522a3439acf4c682f9287849d5b3efcf2c4fd721266bfecfe96\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.13.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.13.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.13.0\"\n + \ },\n \"sha256Digest\": \"d37a85117a1b0989c1ceba8bbb571c777b626eabf9ce14161617837dbfeb067e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.14.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.14.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.14.0\"\n + \ },\n \"sha256Digest\": \"bad894820d83dceabf1805498ad98d1dc196fe8e1c6907136d60cbea30fee816\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.15.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.15.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.15.0\"\n + \ },\n \"sha256Digest\": \"4ca37f0e8b7b1b9b32ed35b127600f5b1ea2390b5dfc5901c7dbce5fef631278\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.16.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.16.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.16.0\"\n + \ },\n \"sha256Digest\": \"d8d4650f5f4b385c7612598301db487ffd2a09b59119453760ca9ab1319f1363\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.17.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.17.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"0.17.0\"\n + \ },\n \"sha256Digest\": \"219065a730c5caa44b07979d56211e24e498a4cfb2d1d50e2d86239254b4d945\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.18.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.18.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.41.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"quantum\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-storage-blob (~=12.14.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Quantum Extension\",\n \"version\": + \"0.18.0\"\n },\n \"sha256Digest\": \"7eddef419f89623b2f4d168be9c60c2ead8ede385fbff1c23671823260fd8569\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.19.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.19.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.41.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"quantum\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-storage-blob (~=12.14.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Quantum Extension\",\n \"version\": + \"0.19.0\"\n },\n \"sha256Digest\": \"96c60aff31dc8153e2c8a2f72ac5a8a4b1e0810b37a1f0b0fdd3d79c4263517e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.20.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.20.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.41.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"quantum\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-storage-blob (~=12.14.1)\",\n \"azure-storage-blob~=12.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum + Extension\",\n \"version\": \"0.20.0\"\n },\n + \ \"sha256Digest\": \"9b9fdd106ff324bfa88188c287675e2fa72cdcb20a0107003dba9d17ea67fb34\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-0.21.0-py3-none-any.whl\",\n + \ \"filename\": \"quantum-0.21.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.41.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"quantum\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-storage-blob (~=12.14.1)\",\n \"azure-storage-blob~=12.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum + Extension\",\n \"version\": \"0.21.0\"\n },\n + \ \"sha256Digest\": \"ea4262c017aa585c82dcda0204cf33bac3898a12512adb91a37912b77c06f93e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"quantum-1.0.0b1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.41.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"quantum\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-storage-blob (~=12.14.1)\",\n \"azure-storage-blob~=12.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum + Extension\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"25f4fb67c5e0b8d041b73e6944c533b1e0009ef80563d0cd3e9506f4c17d1fcf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"quantum-1.0.0b2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.41.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"quantum\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-storage-blob (~=12.14.1)\",\n \"azure-storage-blob~=12.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum + Extension\",\n \"version\": \"1.0.0b2\"\n },\n + \ \"sha256Digest\": \"e22d0d25828fd064570e3e7cbe54420fccf97357b7c786c3d80f6a2a00712c34\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-1.0.0b3-py3-none-any.whl\",\n + \ \"filename\": \"quantum-1.0.0b3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.41.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"quantum\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-storage-blob (~=12.14.1)\",\n \"azure-storage-blob~=12.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum + Extension\",\n \"version\": \"1.0.0b3\"\n },\n + \ \"sha256Digest\": \"3301f40b76afe377bda1d08a35b8892b38b7fc1eddb5707a8a190c15bbf782b2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-1.0.0b4-py3-none-any.whl\",\n + \ \"filename\": \"quantum-1.0.0b4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.41.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"1.0.0b4\"\n + \ },\n \"sha256Digest\": \"73c2a50559648768f123de7039ac8288c265cee4d88e94c3ced85cecbce6b552\"\n + \ }\n ],\n \"qumulo\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/qumulo-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"qumulo-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.48.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/qumulo\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"qumulo\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Qumulo Extension.\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"9973f580a3fc20cc2fe5558a1cfdc10ddfc6567982d12f37008bbfec7aafcf9b\"\n + \ }\n ],\n \"quota\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/quota-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"quota-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quota\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quota\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureQuotaExtensionAPI Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"f336a9499c951ba012c9f68ed7887af63b053ed1585df4bbdef88ddf9e0d6805\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quota-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"quota-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.54.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quota\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quota\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureQuotaExtensionAPI Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"8b4c3475df0c3544dbcc28e4875eb5b163d72b40aff4250aafdad94180c3f995\"\n + \ }\n ],\n \"rdbms-connect\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (==1.22.2)\",\n \"pgcli + (==3.0.0)\",\n \"setproctitle (==1.2.2)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"fd80779e01d5afa74da88dda0339b9068e5ca3390d2dea78b034002c62b713b4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (==1.22.2)\",\n \"pgcli + (==3.0.0)\",\n \"setproctitle (==1.2.2)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"83e3110a82f414274564d97ae5ba1088557376d5cc68cc358152135c283acf15\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-0.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (==1.22.2)\",\n \"pgcli + (==3.0.0)\",\n \"setproctitle (==1.2.2)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"c738cd82edc1c9ad31ba0250eab982ef344d01e50e11dfec9c5b96ccdd5d1b6b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (==1.22.2)\",\n \"pgcli + (==3.0.0)\",\n \"setproctitle (==1.2.2)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"0.1.3\"\n },\n \"sha256Digest\": \"5a6652ecacdc5b5c77dd9225abb30e5fb1160bc491a6ac3083327e81cc60f90e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-0.1.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-0.1.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (==1.22.2)\",\n \"pgcli + (==3.0.0)\",\n \"setproctitle (==1.2.2)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"0.1.4\"\n },\n \"sha256Digest\": \"674a880f508d649f75d426c5b9700f7283079c1b9de2e5bccf31edbce907b838\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.19.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (==1.22.2)\",\n \"pgcli + (==3.0.0)\",\n \"setproctitle (==1.2.2)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"c1830f07c8829025597bf60db45b04c6b854c76d598235e71e6c7ff9626ba100\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.19.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (==1.22.2)\",\n \"pgcli + (==3.0.0)\",\n \"setproctitle (==1.2.2)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"1.0.1\"\n },\n \"sha256Digest\": \"c13bd245524b6c0f8dab0b7c80e51d710934f12f1f68fbc74614805aeb1429f7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-1.0.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-1.0.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.19.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (==1.22.2)\",\n \"pgcli + (==3.0.0)\",\n \"setproctitle (~=1.2.2)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"1.0.2\"\n },\n \"sha256Digest\": \"e5fc0b600c652c9b5ef3f9ec55fde9756a22b0dd9ac17b4ca4efc68339491b58\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-1.0.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-1.0.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.19.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (==1.22.2)\",\n \"pgcli + (==3.0.0)\",\n \"setproctitle (~=1.2.2)\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"1.0.3\"\n },\n \"sha256Digest\": \"fadc2e3b684636448f1f4b6533e54dc30381984c125dc771e605a0410d26dcbe\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-1.0.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-1.0.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.19.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (==1.26.1)\",\n \"pgcli + (==3.4.1)\",\n \"psycopg2 (==2.9.3)\",\n \"setproctitle + (~=1.2.2)\"\n ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"1.0.4\"\n },\n \"sha256Digest\": \"8dc15a70881c71f21ba000854960b1be851a057b403dc8de156b73883efb543d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-1.0.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-1.0.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.19.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (~=1.27.0)\",\n \"mycli~=1.27.0\",\n + \ \"pgcli (==4.0.1)\",\n \"pgcli==4.0.1\",\n + \ \"psycopg2 (==2.9.3)\",\n \"psycopg2==2.9.3\",\n + \ \"setproctitle (~=1.3.3)\",\n \"setproctitle~=1.3.3\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"1.0.5\"\n },\n \"sha256Digest\": \"4684fe51f6d77f8ab1aced59dbbf27ed3324fc8d351e9e98e8dcc2b30493018b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-1.0.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-1.0.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.19.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"Programming Language + :: Python :: 3.11\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (~=1.27.0)\",\n \"mycli~=1.27.0\",\n + \ \"pgcli (==4.0.1)\",\n \"pgcli==4.0.1\",\n + \ \"psycopg2 (~=2.9.3)\",\n \"psycopg2~=2.9.3\",\n + \ \"setproctitle (~=1.3.3)\",\n \"setproctitle~=1.3.3\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"1.0.6\"\n },\n \"sha256Digest\": \"49cbe8d9b7ea07a8974a29ad90247e864ed798bed5f28d0e3a57a4b37f5939e7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-1.0.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-1.0.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.19.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"Programming Language + :: Python :: 3.11\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (~=1.27.0)\",\n \"mycli~=1.27.0\",\n + \ \"pgcli (==4.0.1)\",\n \"pgcli==4.0.1\",\n + \ \"psycopg2 (~=2.9.3)\",\n \"psycopg2~=2.9.3\",\n + \ \"setproctitle (~=1.3.3)\",\n \"setproctitle~=1.3.3\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"1.0.7\"\n },\n \"sha256Digest\": \"eba997d4ad5acd0bdbb80a72281c2f56e88a09b2daa9ecc20ddaefd2586f543d\"\n + \ }\n ],\n \"redisenterprise\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"redisenterprise-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/redisenterprise\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"redisenterprise\",\n \"summary\": \"Microsoft Azure Command-Line + Tools RedisEnterpriseManagementClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"22b1965e5a148ce4eb2d45bf48880caa21becb165810b1b93658886cd5e39515\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"redisenterprise-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/redisenterprise\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"redisenterprise\",\n \"summary\": \"Microsoft Azure Command-Line + Tools RedisEnterpriseManagementClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"f0662c4091e8c4e87069f93db23b5f057f2862f78d038a5f709f16f8d37d524f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"redisenterprise-0.1.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/redisenterprise\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"redisenterprise\",\n \"summary\": \"Microsoft Azure Command-Line + Tools RedisEnterpriseManagementClient Extension\",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"db8c673e2e29498e9f54f3392a5305952c273e7c24d293d96c0708dd3e90d5fe\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-0.1.3-py3-none-any.whl\",\n + \ \"filename\": \"redisenterprise-0.1.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/redisenterprise\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"redisenterprise\",\n \"summary\": \"Microsoft Azure Command-Line + Tools RedisEnterprise Extension.\",\n \"version\": \"0.1.3\"\n + \ },\n \"sha256Digest\": \"744ef0651a7d4c734675d3d567d1162d1dd1986e5274c62613387fd93d0efe6c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-0.1.4-py3-none-any.whl\",\n + \ \"filename\": \"redisenterprise-0.1.4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/redisenterprise\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"redisenterprise\",\n \"summary\": \"Microsoft Azure Command-Line + Tools RedisEnterprise Extension.\",\n \"version\": \"0.1.4\"\n + \ },\n \"sha256Digest\": \"cb59ab44eb12b51ecc62f8a5b6302d166be5d6388cf8ff21bc49f2829128d031\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"redisenterprise-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/redisenterprise\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"redisenterprise\",\n \"summary\": \"Microsoft Azure Command-Line + Tools RedisEnterprise Extension.\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"e43737fefbb1205970254f369b0f0c33fbfd5b82d64eb2025228eb3a07bed3e7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"redisenterprise-1.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/redisenterprise\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"redisenterprise\",\n \"summary\": \"Microsoft Azure Command-Line + Tools RedisEnterprise Extension.\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"acd14dc2c5b75bb49e554d970830d541ce5450868626dfcc3150f01910ba788b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"redisenterprise-1.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/redisenterprise\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"redisenterprise\",\n \"summary\": \"Microsoft Azure Command-Line + Tools RedisEnterprise Extension.\",\n \"version\": \"1.2.0\"\n + \ },\n \"sha256Digest\": \"6e776d464afaaf66456d7b8e6d36ab1a12f19054617479ea8f13633d3a49ffac\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-1.2.1b1-py3-none-any.whl\",\n + \ \"filename\": \"redisenterprise-1.2.1b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/redisenterprise\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"redisenterprise\",\n \"summary\": \"Microsoft Azure Command-Line + Tools RedisEnterprise Extension.\",\n \"version\": \"1.2.1b1\"\n + \ },\n \"sha256Digest\": \"9816e8571a8689864973327b6331d243703da31b40c0539ed89136b9dbf6c9e0\"\n + \ }\n ],\n \"reservation\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/reservation-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"reservation-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/reservation\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"reservation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Reservation Extension\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"8cea59293bb54d3ae741035690c67b2aa6925b7f79e71e5b1ec1b152e8e9eb86\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/reservation-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"reservation-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/reservation\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"reservation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Reservation Extension\",\n \"version\": \"0.3.0\"\n + \ },\n \"sha256Digest\": \"548a8d6c935b97b93f4ea24f7f0470f0ebd8c0b983d91e3bc5234d3a191ed666\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/reservation-0.3.1-py3-none-any.whl\",\n + \ \"filename\": \"reservation-0.3.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.50.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/reservation\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"reservation\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Reservation Extension\",\n \"version\": \"0.3.1\"\n + \ },\n \"sha256Digest\": \"649f086b02305d142f2f08ea96f52a322a165a6f2a958f3287f53550938ab912\"\n + \ }\n ],\n \"resource-graph\": [\n {\n + \ \"downloadUrl\": \"https://files.pythonhosted.org/packages/bd/c1/3df175a9a6a0c6aeae1ca1a7499955d75dd03452b5ba75f6df01a02b7c7f/resource_graph-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"resource_graph-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.45\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"ilidemi@microsoft.com\",\n \"name\": + \"Ilia Demianenko\",\n \"role\": \"author\"\n + \ },\n {\n \"email\": + \"earc@microsoft.com\",\n \"name\": \"Azure + Resource Graph\",\n \"role\": \"maintainer\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-graph\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"resource-graph\",\n \"summary\": \"Support for querying + Azure resources with Resource Graph.\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"76f10264a7c6d78664c34e73d390565ce66e639fd39ffdfad149da8fc499112d\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/resource_graph-1.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"resource_graph-1.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"description_content_type\": + \"text/markdown\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ilidemi@microsoft.com\",\n + \ \"name\": \"Ilia Demianenko\",\n \"role\": + \"author\"\n },\n {\n + \ \"email\": \"earc@microsoft.com\",\n \"name\": + \"Azure Resource Graph\",\n \"role\": \"maintainer\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-graph\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"resource-graph\",\n \"summary\": \"Support for querying + Azure resources with Resource Graph.\",\n \"version\": + \"1.1.0\"\n },\n \"sha256Digest\": \"1eaef63df8a22666f88f322829f3470efb790e36d35376c1705b40fb03464549\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/resource_graph-2.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"resource_graph-2.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.21.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"description_content_type\": + \"text/markdown\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ilidemi@microsoft.com\",\n + \ \"name\": \"Ilia Demianenko\",\n \"role\": + \"author\"\n },\n {\n + \ \"email\": \"earc@microsoft.com\",\n \"name\": + \"Azure Resource Graph\",\n \"role\": \"maintainer\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-graph\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"resource-graph\",\n \"summary\": \"Support for querying + Azure resources with Resource Graph.\",\n \"version\": + \"2.0.0\"\n },\n \"sha256Digest\": \"3bda3548bd742ad24b84d5a81f58aaf47f0d7b97f4a04d5a5b405715f850a31c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/resource_graph-2.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"resource_graph-2.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.22.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.4\",\n \"Programming + Language :: Python :: 3.5\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"description_content_type\": + \"text/markdown\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ilidemi@microsoft.com\",\n + \ \"name\": \"Ilia Demianenko\",\n \"role\": + \"author\"\n },\n {\n + \ \"email\": \"earc@microsoft.com\",\n \"name\": + \"Azure Resource Graph\",\n \"role\": \"maintainer\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-graph\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"resource-graph\",\n \"summary\": \"Support for querying + Azure resources with Resource Graph.\",\n \"version\": + \"2.1.0\"\n },\n \"sha256Digest\": \"62c81e3d62ce60c5a0a485829d00bdb0c733145ee93fb6098c14e3b27ee27c40\"\n + \ }\n ],\n \"resource-mover\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/resource_mover-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"resource_mover-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-mover\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"resource-mover\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ResourceMoverServiceAPI Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"f86ecfcde11e6016da9b107e191b1feaba6896f395d989e5962c6fe6ac34c593\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/resource_mover-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"resource_mover-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/resource-mover\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"resource-mover\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ResourceMoverServiceAPI Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"dee4f576aa3902497762f0d3582fea9e7846de6cfad48575798c9349a45c20a0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/resource_mover-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"resource_mover-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.50.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/resource-mover\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"resource-mover\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ResourceMoverServiceAPI Extension\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"3bc9f41aa30c4f6bc04ff780dc30e8df05bfc887f2adbdf9e89d59f8389e55f3\"\n + \ }\n ],\n \"sap-hana\": [\n {\n \"downloadUrl\": + \"https://github.com/Azure/azure-hanaonazure-cli-extension/releases/download/0.6.5/sap_hana-0.6.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"sap_hana-0.6.5-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-hanaonazure-cli-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"sap-hana\",\n \"summary\": \"Additional commands for + working with SAP HanaOnAzure instances.\",\n \"version\": + \"0.6.5\"\n },\n \"sha256Digest\": \"b4554c125f3a0eb5c891cec396e7705f6e91d4d81789acef20e3c4d172fa4543\"\n + \ }\n ],\n \"scenario-guide\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scenario_guide-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"scenario_guide-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.20.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scenario-guide\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scenario-guide\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scenario Guidance Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"4264b48b4b980334488a3fdb3bc43241e828a2742c35ce48985f3bebf019e8f8\"\n + \ }\n ],\n \"scheduled-query\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"5529213e41055f70c53407498b618c7d48cea70a0ce0aca069e0dd9bb818f549\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"d9cba80c47b0b8b3e3ad86a257eb53598611698efab6687a11f81c2b036b1083\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-0.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"0.2.1\"\n + \ },\n \"sha256Digest\": \"f7a7ee6f9c11260c8cfff54f36ec68b2a3b235767ceb8ff281280523f2eda696\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-0.2.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"0.2.2\"\n + \ },\n \"sha256Digest\": \"17f2dfaa317f735eee708b4365e107a29b3fb796f8d6a9505388ec30c73bf930\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-0.3.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.20.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"0.3.0\"\n + \ },\n \"sha256Digest\": \"ec2220289b5715676e169baeb457322cceade980a36c9034eb58206371703892\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.3.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-0.3.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.20.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"0.3.1\"\n + \ },\n \"sha256Digest\": \"0535be22855f9ab829421fc8f8d47704a0f7e2ea1067ea57d486e9b81a71c5cd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.4.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-0.4.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.20.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"0.4.0\"\n + \ },\n \"sha256Digest\": \"9228691ea2baa13b11473c8ff9916f8bd1fa39fae33ee4386648d9bffb239617\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.5.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-0.5.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.20.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"0.5.0\"\n + \ },\n \"sha256Digest\": \"ee4c54e1d96ac2bd33f2cf148e7cc1eac978afe842dc5b49be24bd2c24c6d13a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.5.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-0.5.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scheduled-query\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"0.5.1\"\n + \ },\n \"sha256Digest\": \"34b68f6a3edbcd703c17f5d384e50e1dee71bc2f05e8aa80862d46afef8c570c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.5.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-0.5.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scheduled-query\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"0.5.2\"\n + \ },\n \"sha256Digest\": \"b393b38bf6dd80918778460b4f4e50643900ffab5dada7af1216c415d25fb706\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-0.5.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-0.5.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.54.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scheduled-query\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"0.5.3\"\n + \ },\n \"sha256Digest\": \"b141ce4ff7678484561e9f3c842d8249112a465b7a0da07a6da49856920f8534\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scheduled_query-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"scheduled_query-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.54.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scheduled-query\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scheduled-query\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Scheduled_query Extension\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"fd5e69d0438b8089dbe197d5ba4c41776aed906941cac374755a4c9044c4af04\"\n + \ }\n ],\n \"scvmm\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-0.1.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"scvmm-0.1.4-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scvmm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SCVMM Extension\",\n \"version\": \"0.1.4\"\n },\n + \ \"sha256Digest\": \"22aaf76e9bb066f279683f451c45d1b927e288a000879a21c728891f463c9e94\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-0.1.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"scvmm-0.1.5-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scvmm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scvmm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SCVMM Extension\",\n \"version\": \"0.1.5\"\n },\n + \ \"sha256Digest\": \"53c40fbc78ed7826ea11e64a79dfc8a49112d5c837417b3032fbe8c69b84f0e3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-0.1.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"scvmm-0.1.6-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scvmm\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"scvmm\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pwinput\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools SCVMM Extension\",\n \"version\": + \"0.1.6\"\n },\n \"sha256Digest\": \"5c02543fff1da970b523055d7c97012bdc40440c5929ade899ccfcf397c37736\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-0.1.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"scvmm-0.1.7-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scvmm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scvmm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SCVMM Extension\",\n \"version\": \"0.1.7\"\n },\n + \ \"sha256Digest\": \"e462aa30bbca50d140a70a80db81cb9f661ae11bc7a29435b7dc57aa32756c53\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-0.1.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"scvmm-0.1.8-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scvmm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scvmm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SCVMM Extension\",\n \"version\": \"0.1.8\"\n },\n + \ \"sha256Digest\": \"167a9a333afebbb7b211b1f9a60d68f33bee28965653894c9193676f102c5a38\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"scvmm-0.2.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scvmm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scvmm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SCVMM Extension\",\n \"version\": \"0.2.0\"\n },\n + \ \"sha256Digest\": \"ab64e7ab90cc3048443959e32332c400b0b83746dd39558849e1f6edc13b6dcd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"scvmm-1.0.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scvmm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scvmm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SCVMM Extension\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"565aa9d75dd4d276df2f8ffec5311bd2ae16a2d6172d525a7763fc5972b262b7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-1.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"scvmm-1.1.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scvmm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scvmm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SCVMM Extension\",\n \"version\": \"1.1.0\"\n },\n + \ \"sha256Digest\": \"dfbf446da90a9ed211f3a6554eea713b569fc8747398af9a5c2fb74220d0fa95\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-1.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"scvmm-1.1.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scvmm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scvmm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SCVMM Extension\",\n \"version\": \"1.1.1\"\n },\n + \ \"sha256Digest\": \"7d704578bc5eb60b8105de0b4a924176581a4cf2fd162b0896d81246f7f73a68\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-1.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"scvmm-1.1.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scvmm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scvmm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SCVMM Extension\",\n \"version\": \"1.1.2\"\n },\n + \ \"sha256Digest\": \"b1b2e66c0ff057976d48f18a43960f4ff5802b5502e9e6d2d5a5d8f1b4e8b6f2\"\n + \ }\n ],\n \"self-help\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/self_help-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"self_help-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/self-help\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"self-help\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SelfHelp Extension.\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"24e94291acb3735073d3372cc11459577c6a2649bf3b34f10ae66f29964ff4ff\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/self_help-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"self_help-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/self-help\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"self-help\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SelfHelp Extension.\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"a57d629f75443666af570188716eaf2b9182da41f6d2f958f6d53d79b830b23e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/self_help-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"self_help-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/self-help\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"self-help\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SelfHelp Extension.\",\n \"version\": \"0.3.0\"\n + \ },\n \"sha256Digest\": \"0545610ee482069ad89c3fcc342e3d94f72b4d5eb139312c778501c843e8216d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/self_help-0.4.0-py3-none-any.whl\",\n + \ \"filename\": \"self_help-0.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/self-help\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"self-help\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SelfHelp Extension.\",\n \"version\": \"0.4.0\"\n + \ },\n \"sha256Digest\": \"8c903aaf10d6cb61e6455f6010deeeb496d1e23d6876662089266a49403586b6\"\n + \ }\n ],\n \"sentinel\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/sentinel-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"sentinel-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/sentinel\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"sentinel\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SecurityInsights Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"0c0de10af8cc7c91704dc29afa2bc178f18bf4e28612d6d0c5d7c594bd05d4c9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/sentinel-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"sentinel-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/sentinel\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"sentinel\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SecurityInsights Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"407f23c06a7bd6e1200f108abcd0127904334d9813ccae8df8fc3e63b3eaa97f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/sentinel-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"sentinel-0.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/sentinel\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"sentinel\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SecurityInsights Extension\",\n \"version\": \"0.1.2\"\n + \ },\n \"sha256Digest\": \"978d4d15a01124d46dd310918c428bba1792a58716aa0511f2fdbfec2176f7e2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/sentinel-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"sentinel-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.37.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/securityinsight\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"sentinel\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Sentinel Extension.\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"5511544b4e342b03a4a4263617c603d87442ad5179ce9d8c0d1fd10915f93b7a\"\n + \ }\n ],\n \"serial-console\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"serial_console-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serialconsole\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serial-console\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websocket-client (~=0.56.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools for Serial Console Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"39317e5d4ecc6add26a624a6fa0d48344cfb6b3faaefb6ccbdcb30de9d35fb50\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"serial_console-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serialconsole\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serial-console\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websocket-client (~=0.56.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools for Serial Console Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"082f315c9cdf5887987f12d6e27645101ea8318003a8d60c24dc630c861ebc97\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"serial_console-0.1.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/serialconsole\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serial-console\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websocket-client (~=0.56.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools for Serial Console Extension\",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"51493fe5617f90d06f5e4493b81a85b5d664f80c264941d4e6f5ca5f3473dc57\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-0.1.3-py3-none-any.whl\",\n + \ \"filename\": \"serial_console-0.1.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/serialconsole\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serial-console\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websocket-client (~=0.56.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools for Serial Console Extension\",\n \"version\": + \"0.1.3\"\n },\n \"sha256Digest\": \"66ed2625bac7ab1e73300a37eb76d856f25673e398ccdbe6939f0b0d10e4770e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-0.1.4-py3-none-any.whl\",\n + \ \"filename\": \"serial_console-0.1.4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/serialconsole\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serial-console\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websocket-client (==1.3.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools for Serial Console Extension\",\n \"version\": + \"0.1.4\"\n },\n \"sha256Digest\": \"312bd981dc2a9c2661bae6056333d0d74292023ffaeb5be26a4be9c5ec233e50\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-0.1.5-py3-none-any.whl\",\n + \ \"filename\": \"serial_console-0.1.5-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/serialconsole\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serial-console\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websocket-client (==1.3.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools for Serial Console Extension\",\n \"version\": + \"0.1.5\"\n },\n \"sha256Digest\": \"8c65ea10b0c336106f3c9c862e50b327c044b8be90bf6075771cc98973aa99f8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-0.1.6-py3-none-any.whl\",\n + \ \"filename\": \"serial_console-0.1.6-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/serial-console\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serial-console\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websocket-client (==1.3.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools for Serial Console Extension\",\n \"version\": + \"0.1.6\"\n },\n \"sha256Digest\": \"2b20fce597a655c1016ab4d3b2f569267adf1536ed34481063e56c22f407381a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-0.1.7-py3-none-any.whl\",\n + \ \"filename\": \"serial_console-0.1.7-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/serial-console\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serial-console\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websocket-client (==1.3.1)\",\n \"websocket-client==1.3.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools for + Serial Console Extension\",\n \"version\": \"0.1.7\"\n + \ },\n \"sha256Digest\": \"5a67a26b525a8f28fe3189024b02763bd9a0d8dc4c641fb62317475cd11ec51c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-0.1.8-py3-none-any.whl\",\n + \ \"filename\": \"serial_console-0.1.8-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/serial-console\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serial-console\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websocket-client (==1.3.1)\",\n \"websocket-client==1.3.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools for + Serial Console Extension\",\n \"version\": \"0.1.8\"\n + \ },\n \"sha256Digest\": \"d4deb023672e1b17e5045dd4cf206b7a518c1bfceeb081f73f43fd4fe9b99777\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"serial_console-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/serial-console\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serial-console\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websocket-client (==1.3.1)\",\n \"websocket-client==1.3.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools for + Serial Console Extension\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"c6f9d04ba068ff966dd1f522521ca7142e15deaf5bfa732805f2cd139332cbfd\"\n + \ }\n ],\n \"serviceconnector-passwordless\": [\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-0.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"psycopg2-binary (==2.9.5)\",\n \"pyodbc + (==4.0.35)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"0.3.0\"\n },\n + \ \"sha256Digest\": \"5364760a136655207f5f970431882d5d6c844818e43fbb81ffb311d19a21700a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.1-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-0.3.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"psycopg2-binary (==2.9.5)\",\n \"pyodbc + (==4.0.35)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"0.3.1\"\n },\n + \ \"sha256Digest\": \"d61dd33d4fe9542c506a91a9f7876bcb4dd14e27ffe0aeae5f1cbf76eda93413\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.2-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-0.3.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"psycopg2-binary (==2.9.5)\",\n \"pyodbc + (==4.0.35)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"0.3.2\"\n },\n + \ \"sha256Digest\": \"51f2a46660cf7d489a08be9292d5ba1c6e9a09925ead9baac0ba50fe982670f8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.3-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-0.3.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"psycopg2-binary (==2.9.5)\",\n \"pyodbc + (==4.0.35)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"0.3.3\"\n },\n + \ \"sha256Digest\": \"9f9cddae41ab3172fe541e88b915ef4a8cb16139a5215d259ee23c279c290472\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.4-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-0.3.4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"psycopg2-binary (==2.9.5)\",\n \"pyodbc + (==4.0.35)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"0.3.4\"\n },\n + \ \"sha256Digest\": \"5b68cc4fcf6cde9edd4691dd55a9bb063fcce0f2c740abbab798d65804cd07a2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.5-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-0.3.5-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"psycopg2-binary (==2.9.5)\",\n \"pyodbc + (==4.0.35)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"0.3.5\"\n },\n + \ \"sha256Digest\": \"05df173778361eed918fa63d241704b47e479443f053bf3ff327f07946c5f553\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.6-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-0.3.6-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"psycopg2-binary (==2.9.5)\",\n \"pyodbc + (==4.0.35)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"0.3.6\"\n },\n + \ \"sha256Digest\": \"c9e6d013ae6142a4d4fdefbec40b89c4af37ea1c4c4840b02f27d3e9573a1357\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.8-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-0.3.8-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"psycopg2-binary (==2.9.5)\",\n \"pyodbc + (==4.0.35)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"0.3.8\"\n },\n + \ \"sha256Digest\": \"546af88e93fb857552183869a12001020897f7b724cc1f350936971635302ef4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.9-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-0.3.9-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b1\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"0.3.9\"\n },\n + \ \"sha256Digest\": \"48e3b58838945f62f6aecac7579b00f3a71d6d4db7f8f34af39d6308a26bd445\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.11-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-0.3.11-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b1\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"0.3.11\"\n },\n + \ \"sha256Digest\": \"bb8d273e2b221c439fb5d418ddf2d8591e3382f2efba85ce384e6dcb93488a38\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.12-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-0.3.12-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b1\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"0.3.12\"\n },\n + \ \"sha256Digest\": \"7d3fadef5e1dddc362f043c8b0a802668c24187c68fdf8e33797250f5276ee2f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.13-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-0.3.13-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b1\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"0.3.13\"\n },\n + \ \"sha256Digest\": \"0948c4b5cb9ef84ad4470b3947d67034aef0531fba24d97782f48e0aacb2801a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b1\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"cb065e4ca01b71023bd7c6c242f20123eeb8ff90c2178b035e8de58552740488\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-1.0.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b1\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"1.0.1\"\n },\n + \ \"sha256Digest\": \"04e4cc595ee68484f28159ba010c3feda561ee68cd0f386ab1b72045f2d19272\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-1.0.2-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-1.0.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b1\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"1.0.2\"\n },\n + \ \"sha256Digest\": \"ce27bafbeb27a848c0294e085f95c81778b64d67537e7efbc6a5ce09b0ede902\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-1.0.3-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-1.0.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b1\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"1.0.3\"\n },\n + \ \"sha256Digest\": \"066ed68dcfc4b6991ea38579874ce1967d8d9636838023d4a03910026467d348\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.0-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-2.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"2.0.0\"\n },\n + \ \"sha256Digest\": \"2da75d871e2f4ba0585d6609978beaa17511ba7ffbc298aaf10d2c58b8310cb1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.1-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-2.0.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"2.0.1\"\n },\n + \ \"sha256Digest\": \"65f6db04c42d74474534a8dc3d59066cc04325b72551a7045fd9d298350b3ad0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.2-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-2.0.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"2.0.2\"\n },\n + \ \"sha256Digest\": \"19001ff4ebcd5b4b2cc890a7cdef6fdd1bc404d9e29c03c5adcfe59355864671\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.3-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-2.0.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"2.0.3\"\n },\n + \ \"sha256Digest\": \"045240af31f6ba900b9743f10c2e7a552e5c09c31aec8bec63ce05e7e96fd7e7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.5-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-2.0.5-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"2.0.5\"\n },\n + \ \"sha256Digest\": \"27b8c5f6e1b576ce2c3a74e967851398e2e0bca77faaccb890410e66dcf9c304\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.6-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-2.0.6-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"2.0.6\"\n },\n + \ \"sha256Digest\": \"7f24220cbd58d682d1bc765f40c2663dbd3014e88b7684a8756e43675730e6e0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.7-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-2.0.7-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"2.0.7\"\n },\n + \ \"sha256Digest\": \"e71ad49f38ec94a516281352e4498e578f2fca2aa4d233f3f9a93c9e22635e61\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-3.0.0-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-3.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"3.0.0\"\n },\n + \ \"sha256Digest\": \"119d2bab1cedc9cf24e7935e0273af98a6ed7472c62baf7578152195a1ff03e4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-3.0.1-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-3.0.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"3.0.1\"\n },\n + \ \"sha256Digest\": \"499cb8a10273a6137f1b1731f25de0a1a78052b7e77fc981578f91a707550bdd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-3.0.2-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-3.0.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"3.0.2\"\n },\n + \ \"sha256Digest\": \"9fa9a04604f100bbdc3ab9e1d8f2a823dcb6a9cc1a6174bb2b6ba22b98f24b8d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-3.1.0-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-3.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"3.1.0\"\n },\n + \ \"sha256Digest\": \"3d747aba647b7e87f7e73000fde80052552e9f8ae187cf45e05e867e82e767eb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-3.1.1-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-3.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"3.1.1\"\n },\n + \ \"sha256Digest\": \"1b1c248844162b1f5065841b26da1d9b7c63b03336045001a1f02835efb2f7e9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-3.1.2-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-3.1.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.1.1)\",\n \"PyMySQL==1.1.1\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary + (==2.9.9)\",\n \"psycopg2-binary==2.9.9\",\n + \ \"pyodbc (==5.1.0)\",\n \"pyodbc==5.1.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"3.1.2\"\n },\n + \ \"sha256Digest\": \"3097e0d58a8ac4715b6d4dee7b2c6d7f4311e2296baddd87c18eaa994e91cfeb\"\n + \ }\n ],\n \"site-recovery\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/site_recovery-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"site_recovery-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/site-recovery\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"site-recovery\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SiteRecovery Extension.\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"ab19142c9a2e06190b6dac272d8cf29e179c9e283f965f8e3a4d29275b847ce5\"\n + \ }\n ],\n \"spring\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"ac3a708e67b9de1b38583313e0504e318f92005fd583143594e03ca7fd70b1aa\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.1.0\"\n },\n + \ \"sha256Digest\": \"5ea52b25dd34ef7c253f9e5aff2933dee5fe01bb66791f71c85981f68610ab85\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.1-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.1.1\"\n },\n + \ \"sha256Digest\": \"67d9d8b02739221f00822f82f4fad31b972a60ab1b4bbeee2ece955b4124bd29\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.2-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.1.2\"\n },\n + \ \"sha256Digest\": \"0ea6fa1d20a5f494597dcb627282152b7a1e9e3b20028afb5e6406376f15203c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.3-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.1.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.1.3\"\n },\n + \ \"sha256Digest\": \"65110cbf382e4a1ad98c108c618f2c77bd32634d8ae4759cae5ea47c026c7c85\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.4-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.1.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.1.4\"\n },\n + \ \"sha256Digest\": \"f159454ffaac8d90baa484870ac2e9acf7d2f18aabc0a6dac3db8342d21a7fab\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.5-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.1.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.1.5\"\n },\n + \ \"sha256Digest\": \"091004e8bfea9c39fbb192065b2355018f6a3ab1041e914ace26f8c02ef14687\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.7-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.1.7-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.1.7\"\n },\n + \ \"sha256Digest\": \"351b7e2d1b434f72eeaa1a8392a57e2c2cb52223d2140c446de85e339f7c457d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.8-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.1.8-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.1.8\"\n },\n + \ \"sha256Digest\": \"e0ff591d3833ea873c4e3ba72c33f314c67ff01cf3da2da358a2b40cea9b6bb0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.9-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.1.9-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.1.9\"\n },\n + \ \"sha256Digest\": \"bb71dbe3b05a6bc32bce1b12a5793dd6171dbed226d3173f115ffe411a8044df\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.10-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.1.10-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.1.10\"\n },\n + \ \"sha256Digest\": \"864200fb0cc9f988e40db675c6b6b016c2fcff91ff25551c03a576ae0dd4096b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.11-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.1.11-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.1.11\"\n },\n + \ \"sha256Digest\": \"be1471eb6aa6a462d13f352f643f4267fa8411c73f17d2b6d0f842229860dde8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.12-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.1.12-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.1.12\"\n },\n + \ \"sha256Digest\": \"ae1c41d2d09150c600e51d6de3a085a04d079b6803bdf4fcba6b041460f46a8d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.13-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.1.13-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.1.13\"\n },\n + \ \"sha256Digest\": \"c3d968114b8e68b522962dccba958bc43b0235af55c417ad5cf6b6a25f1a9444\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.1.14-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.1.14-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.1.14\"\n },\n + \ \"sha256Digest\": \"e7d57cac5569ee8b530ddc51cf44ff45eedbdf5f94fadbb058e79eea705758a8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.2.0\"\n },\n + \ \"sha256Digest\": \"36ff3ca0812a809dcfda55b4510194f3a53891b7f5a7a2bb0bc5385c072e9fae\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.3.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.3.0\"\n },\n + \ \"sha256Digest\": \"5021a61fc3d91bcd78ce38f15d2d1de977d6aa9c15e87cfc9d45c653a01076d6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.4.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.4.0\"\n },\n + \ \"sha256Digest\": \"e808882388d07ccbd1b96a176a3d992b8434296a16af816a6dd19e13bb228d55\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.4.1-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.4.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.4.1\"\n },\n + \ \"sha256Digest\": \"bca1287b8fb6cd2e1d4b1d4d92859840ee5e44223225942756d067cd0eeed8d8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.4.2-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.4.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.4.2\"\n },\n + \ \"sha256Digest\": \"6a56032cea46be8a2e3cd27242c73481d2b2f31074456cb31c868a051eda3127\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.5.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.5.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.5.0\"\n },\n + \ \"sha256Digest\": \"b553b17bdeab27e2c69f9dd3957e5e59efc664b9405e581809a2730cc7ef5619\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.6.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.6.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.6.0\"\n },\n + \ \"sha256Digest\": \"30839266640b6e89a183107ede0abcdec3363cd5831fe36c179107d267faa57b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.6.1-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.6.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.6.1\"\n },\n + \ \"sha256Digest\": \"37a32ef1b28f9e1ecd1f61a76bf6a44bf063746a5401894dd513999afdeed0b0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.6.2-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.6.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.6.2\"\n },\n + \ \"sha256Digest\": \"6718bc1fb7ff0e106b3e00603d900adab9e2ed7b7939a0e1ed223d5cdf7924fc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.6.3-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.6.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.6.3\"\n },\n + \ \"sha256Digest\": \"0dcbb166127c0f4eb0b33eb70ea108b6c7e9f470858c12da30eecb483eb0080b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.6.4-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.6.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.6.4\"\n },\n + \ \"sha256Digest\": \"a52902d1a828827847c2b8a571fcd3970ee6c006a49ed1fcfd57e581bfefa251\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.6.5-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.6.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.6.5\"\n },\n + \ \"sha256Digest\": \"a00363a73db626180830a20c0465874f6d4062dad07862e1b4a22f8c1908dca8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.6.6-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.6.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.6.6\"\n },\n + \ \"sha256Digest\": \"34064f43b620a36f1f8aa20200990297aaaf91c58795e0274d6f719136b029a4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.6.7-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.6.7-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.6.7\"\n },\n + \ \"sha256Digest\": \"7d9a8d4f792962dd1f713a839f9099bcf04c24958411f8e0edc4ef47321b87a3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.6.8-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.6.8-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.6.8\"\n },\n + \ \"sha256Digest\": \"2286a779c293a47a4f2d01c2699f6d01ac8d28ac471c07e97f4c9f38750e6c92\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.7.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.7.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.7.0\"\n },\n + \ \"sha256Digest\": \"913b70f5f98b1da973fdb8324916ebc8fef4747a872b834efcbdef19101cb424\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.7.1-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.7.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.7.1\"\n },\n + \ \"sha256Digest\": \"4a4252041f9b0395cf6614b86b1c93afd94ac92d75ab82daae6634b0dbfa60a5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.7.2-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.7.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.7.2\"\n },\n + \ \"sha256Digest\": \"b4a5740ff04788a947d6c67c57cea71b3a3e3244adb7d19bc02e52ccd7c4fea0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.7.3-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.7.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.7.3\"\n },\n + \ \"sha256Digest\": \"a58e5fec5be4068420a10e14072bc788caf2782908c3406c92c761c4619426ec\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.8.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.8.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.8.0\"\n },\n + \ \"sha256Digest\": \"d83225658e5959ee43b9dac59ec9d9488fc3f3158f09f99f5d97ab58f1549c17\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.9.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.9.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.9.0\"\n },\n + \ \"sha256Digest\": \"9efab0aa23a5aba4ed754b25e1197b9b1e960184cecd10237d3ebad66c3c1a78\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.9.1-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.9.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.9.1\"\n },\n + \ \"sha256Digest\": \"3b07830d1a32c045af46de4c77250db5ea65fba26f1d9bb8f7f8582a923d34b2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.9.2-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.9.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.9.2\"\n },\n + \ \"sha256Digest\": \"36b30260e23bef6398eb153090379d8784d6b3868fa41d1748e447a37a21c874\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.10.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.10.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.10.0\"\n },\n + \ \"sha256Digest\": \"031895d8e91ad28eb8edda87b34bd704d8ed8b471597bcaaa0064ff2c408c101\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.11.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.11.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.11.0\"\n },\n + \ \"sha256Digest\": \"a02e5fe4531399d9e2d790004e55ce21d19dd384e2da377244beeb7342239291\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.11.1-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.11.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.11.1\"\n },\n + \ \"sha256Digest\": \"7cb83c3cb8811f10c724d7d321510821b9c8ca7103927820c8aab8257a063f44\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.11.2-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.11.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.11.2\"\n },\n + \ \"sha256Digest\": \"6122206a0eb4de9bde73b8a8975b8f1b7ccf120e8b419dadbd890921c068120a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.11.3-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.11.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.11.3\"\n },\n + \ \"sha256Digest\": \"415dce682cd5636d234e0b36f015322b0fb5062a0a7955bc8f9a122cdd7f9c0e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.12.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.12.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.12.0\"\n },\n + \ \"sha256Digest\": \"8d2a4bf4fa2bad75868b1f1dabfe5e6d41e93affd29098f1c818486174aed3ec\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.12.1-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.12.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.12.1\"\n },\n + \ \"sha256Digest\": \"8b4ddd8caa4df29b8e98e4d258ce2ca36d146387300b7b289c705de760bd75ff\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.12.2-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.12.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.12.2\"\n },\n + \ \"sha256Digest\": \"89e1762ee425d9d535b563799b9ef8bca1dbdc1083e217b6f5403c5b737e8ce0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.13.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.13.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.13.0\"\n },\n + \ \"sha256Digest\": \"ad70a699f7b14f3fa7099a4ea4da31cd62f7222ce3fe7b8f705df16750dd3dcb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.13.1-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.13.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.13.1\"\n },\n + \ \"sha256Digest\": \"bc70bf2099410034e833c95c76b4b35366916f3f50f53bb22cfbdc6c9224754d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.13.2-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.13.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.13.2\"\n },\n + \ \"sha256Digest\": \"e87768d4df7b6a633f9c0ea50216a49c382d3a681a4f8c2a39021cc802092887\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.13.3-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.13.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.13.3\"\n },\n + \ \"sha256Digest\": \"694913f936898e8a3c06feae951be4c979913a3fc04d4a5eeb944f1586406cac\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.14.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.14.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.14.0\"\n },\n + \ \"sha256Digest\": \"3452d273b7e2bda35c592944518ff65cc148c06369a5b976af84100f1b6be719\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.14.2-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.14.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.14.2\"\n },\n + \ \"sha256Digest\": \"9264d442d0fe12960e1e9fdaa2b2863a51b87eed0d3ffc6b6c85ce4261cd937f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.14.3-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.14.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.14.3\"\n },\n + \ \"sha256Digest\": \"c8eafccfd0c0d31e732fdb6ff18b7c647ea70587687bafec355ed1fa40d75346\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.15.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.15.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.15.0\"\n },\n + \ \"sha256Digest\": \"ca61934f24ccd5640747de02039081fc33493ebec2b462961dd398aeefb041e8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.15.1-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.15.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.15.1\"\n },\n + \ \"sha256Digest\": \"d01289fadaa3f8a024089d21699490260d5a04752751a07a225e0b1668cf28a1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.16.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.16.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.16.0\"\n },\n + \ \"sha256Digest\": \"ccea329952e48382372742fc179bcad391fcdae94692b33da14ca80d9c344487\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.17.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.17.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.17.0\"\n },\n + \ \"sha256Digest\": \"1914ab006f731d3ed27eae28429134dcf5ccd4fd5cc46d0dcf773277dd7cb53b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.18.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.18.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.18.0\"\n },\n + \ \"sha256Digest\": \"8ee1a9ac7bbc649d37c328ebf62994180689e64778d225dbc046a848208498f1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.19.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.19.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.19.0\"\n },\n + \ \"sha256Digest\": \"770e81524dab1c51788dbd82b0b1a5ef3bc99738b481babdd6335605f12d9eea\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.19.1-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.19.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.19.1\"\n },\n + \ \"sha256Digest\": \"b9f9e224aeafbc9a774adec2222a5efcc76ba88a0d50ef3aaebb69d59cbd9812\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.19.2-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.19.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.19.2\"\n },\n + \ \"sha256Digest\": \"fcd04cee0a1778ed6ee5fd3ec470f919ba4f2f133fbb93737164a65b17eab76b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.19.3-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.19.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.19.3\"\n },\n + \ \"sha256Digest\": \"80cbd41e563231e500670402b01e95150adce18b7c128320c3d2393284e0d5d5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.19.4-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.19.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.19.4\"\n },\n + \ \"sha256Digest\": \"9a278e1ffc07c31c575b9837ad86002427f7a39175581724e8aedc91d407bc01\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.20.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.20.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.20.0\"\n },\n + \ \"sha256Digest\": \"7dd09706b04194a1f3d762d0f88fffa9d51d94e81b83a700fb217001dc1d7702\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.20.1-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.20.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.20.1\"\n },\n + \ \"sha256Digest\": \"3f0fa8b87858c4b313bf2772975c58ff76dcecbf35309c220150105f644209c6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.21.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.21.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.21.0\"\n },\n + \ \"sha256Digest\": \"a513aff7c4034e4b7016b948ae6fcfabcc0c754c1631d619233ea7bf61508ab1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.22.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.22.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.22.0\"\n },\n + \ \"sha256Digest\": \"bfc252e596b14d4212e017b1d64d5c9882f25ee61f7684bfd4e187f3b19bb497\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.23.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.23.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.23.0\"\n },\n + \ \"sha256Digest\": \"249c22d850131babda049e4524be50ecd6abe76dc88998f91a4c0985928c83cd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.24.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.24.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.24.0\"\n },\n + \ \"sha256Digest\": \"92b6b4f07d1a5f1f19892735697e2bce813910f0840f920d9205d490cca52fcc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.24.1-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.24.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.24.1\"\n },\n + \ \"sha256Digest\": \"d47c8dcffd935d85cc924d88335e4feabfa5c8528b86d538e4d0ce0abda1762d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.24.2-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.24.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.24.2\"\n },\n + \ \"sha256Digest\": \"2bce0075fcf2365cca884f6acd1385f2d769ef7a20f122c04f27f77bac30c0ad\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.24.3-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.24.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.24.3\"\n },\n + \ \"sha256Digest\": \"8f173b6f3544ac73de36f1cd065aade3472b2056374de28c25c2082c51b5efb3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.24.4-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.24.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.24.4\"\n },\n + \ \"sha256Digest\": \"2e298a74b53fcac40d6173a5e9ea386568fcf73d88bde4c44b37c8b755b7555d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.24.5-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.24.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.24.5\"\n },\n + \ \"sha256Digest\": \"fc3d3d751da3262ef123904c3f9253eb7f0d6b1d3c6001aab69c5c6c1a9a89f8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.25.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.25.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.25.0\"\n },\n + \ \"sha256Digest\": \"2b9cf4ae2fd52b5f644bfefba69ed5e574404597e3cab0e3a9b8e44e7b03363f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.25.1-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.25.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.25.1\"\n },\n + \ \"sha256Digest\": \"9eb8a6f2f77b19c9f9809526bb701076590ddb35f6b2ec431ce318b96cc40733\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.26.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.26.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.26.0\"\n },\n + \ \"sha256Digest\": \"e82c6a3aec88a0736c76147707b64e64cfd9b85450335d9e0facc790e1e761b4\"\n + \ }\n ],\n \"spring-cloud\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.1.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"1042caa1c3b6c85c2e5360bf57de4d26f71afd80ecae6b14cf45fbfe73b5cf0e\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.1.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"f42d8c99ace9b4df29eea79ac7a588b1fcaecd381b1a80c7dbdd920756f8d209\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.1.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"b39aa8c49b316b1870e79db0526be2db772b179f9f517f72af898d9c3cc3310d\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.maxCliCoreVersion\": \"2.1.0\",\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.2.1\"\n + \ },\n \"sha256Digest\": \"dfb974346cf9f62d8f9564756d6661cd758904d1e7035ca61c7227d6b0fc6cf1\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.2.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.2.2\"\n + \ },\n \"sha256Digest\": \"ab81ea74ecb86edaa1b4e5938e1136dbf6788b237b141c5905b121646edd9f5b\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.2.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.2.3\"\n + \ },\n \"sha256Digest\": \"c4af1e193256ae2b04fc9c46a414c3203944b458b2a8959654c55450ec9ea76d\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.2.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.2.4\"\n + \ },\n \"sha256Digest\": \"9e18d1d44c7f63c970bbc70d29f6c5719c4062c5defa5a63165db13d8623fc70\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.2.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.2.5\"\n + \ },\n \"sha256Digest\": \"281fc1babe47793e0bcccbe004ea4771802038eead1e8c3b553461b8062be912\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.2.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.2.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.2.6\"\n + \ },\n \"sha256Digest\": \"f3fdb9cd98dcd887a7f84dcc5eff38c8b6384b464fa0734965df9f379acaacd8\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.3.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.3.0\"\n + \ },\n \"sha256Digest\": \"9c719fe1c6f539ba663283bd2eb8464aa9bcbf2d35617ac58408c6133f824f38\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.3.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.3.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.3.1\"\n + \ },\n \"sha256Digest\": \"a720deecb978406fb081c148078ee8831780cefefe965556852c00f8e1fc36c7\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.4.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.4.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.4.0\"\n + \ },\n \"sha256Digest\": \"c09d2a188fe5e41f7fd9835c1efd0c3065b55f2b9efde39b6f2ff399be567eec\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.5.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.5.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.5.0\"\n + \ },\n \"sha256Digest\": \"b2a36656b073f9cf588755508757fcd2cd7e0f8d573b7e43fc5fa3adb315a063\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.5.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-0.5.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"0.5.1\"\n + \ },\n \"sha256Digest\": \"79fd3b7b6928ea53b63a040412420398e138097e960a3afdfa76da051f140f19\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"698aa10606de4ec9eec580747a2d6d38c755633261241d75618badc53fe1e0f4\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"1.0.1\"\n + \ },\n \"sha256Digest\": \"d2b766d594c89a19abba3a7b2df6224d1af15fd9202b31fe5d57b9d9970b399c\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-1.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"a4fa97d6241fab2a66d8dd80e0d6a68ea17d849bb7404349ad6203c71fb89ba9\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-1.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"1.1.1\"\n + \ },\n \"sha256Digest\": \"ed63f4464f80e47df33b336ede149e1bc0f3b985dd033ee3541fffbaa9ad5f59\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-1.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-1.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"1.2.0\"\n + \ },\n \"sha256Digest\": \"241c7485bfc3792efe8cd728df2ce8aa3a52eb078b7eab43a1dd2fd6322b413a\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.0.0\"\n + \ },\n \"sha256Digest\": \"c1e2931b439dea0bea043aec7817b454d510c944552a7bf084fd9916ab513142\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.0.1\"\n + \ },\n \"sha256Digest\": \"82e4d6c55a28dd7de155504e6836981a390e26562ca684bdf9240324bf428665\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.1.0\"\n + \ },\n \"sha256Digest\": \"4d6714f950fc8f3097d4ec1e1a6eb52f564f3fd543195cb3e5da2b47f187fa92\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.1.1\"\n + \ },\n \"sha256Digest\": \"a9775975158941a59479571440dcf6555c6dabfff576ed5ffaf98bd25e49fe12\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.1.2\"\n + \ },\n \"sha256Digest\": \"a07a8718562169a6ec1524e2a111ab5f926b05db91f484ae2ff2397218afe171\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.2.0\"\n + \ },\n \"sha256Digest\": \"88ba35a78eb607d24d1c6ac72aa770990e961e3db17ed70278d99a60eee8830e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.2.1\"\n + \ },\n \"sha256Digest\": \"d12cf4e756b518d4caf799fc59e312a28fd105fe5c5ddaa62ceb22929ec2dc63\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.3.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.3.0\"\n + \ },\n \"sha256Digest\": \"6c776b16405b4c01bfd8af78307914eb5f050bb3793d7bf6549b2eca645d02f4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.3.1-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.3.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.3.1\"\n + \ },\n \"sha256Digest\": \"3597aab72ffc4d9fdc3ee9d02b492bc0b11146b9ae0f4b9f4d6f958c05fdc980\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.4.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.4.0\"\n + \ },\n \"sha256Digest\": \"f4abfe885c9d08e80d48f1983d09082e8340e353ceb861a8eb9ce62f6786b180\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.5.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.5.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.25.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.5.0\"\n + \ },\n \"sha256Digest\": \"2238877407cb3d4c0425350350abee4f82da5376d11fea979194c62f8b485f68\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.5.1-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.5.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.5.1\"\n + \ },\n \"sha256Digest\": \"a0a28e6eea330f55f5dce630a4ddbbcc9f6f4d800a3e0fc3eeaf1bf2bb7db095\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.6.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.6.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.6.0\"\n + \ },\n \"sha256Digest\": \"a3f685cd0166cabb4e289aba399045399fb2fdc3d691f05cd5d8e9000031b434\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.7.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.7.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.7.0\"\n + \ },\n \"sha256Digest\": \"2694319d0d46dff1b159b0b02d615cb8848306e7c3df81a334ce35523f834b73\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.7.1-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.7.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.7.1\"\n + \ },\n \"sha256Digest\": \"68917af5100e931c03887a56ed14edb4d8ea258c049759b07018f52f03f8c08c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.8.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.8.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.8.0\"\n + \ },\n \"sha256Digest\": \"0c29139a8cdaf18c70cd53497a5888885c71fef03698631400191947496f97a9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.9.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.9.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.67\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.9.0\"\n + \ },\n \"sha256Digest\": \"902fa79c399a2f374987ac84b65d76cf8e349de57da7a52c8c781a559fe24f35\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.10.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.10.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.10.0\"\n + \ },\n \"sha256Digest\": \"0f5f286381bdb4f8a36b7e1484da8a651b9a41b6a5ffd5390c2ebe76577415d3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.11.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.11.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.11.0\"\n + \ },\n \"sha256Digest\": \"0b9bd233a830046a0286387c65a12facc5dea2d498281a50bda64ba846ef4dc7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.11.1-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.11.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.11.1\"\n + \ },\n \"sha256Digest\": \"0646e9965895f9ff1640d461049c2249f2a67036c4bac60ff90f8ba792c6e95f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.11.2-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.11.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.11.2\"\n + \ },\n \"sha256Digest\": \"11d01765c886a387ab622580e4e7b9476a86be5ee84a4d4af7120ef189752f32\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.12.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.12.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.12.0\"\n + \ },\n \"sha256Digest\": \"5865ebb83df7fe713a5ad7d2687b5b1b0c5668b24a774e80e04c303d9b8e6f9e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.12.1-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.12.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.12.1\"\n + \ },\n \"sha256Digest\": \"a46561af3afdca63d0b74bb97242e83e4b187601832b8531f915d7604964c430\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-2.12.2-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.12.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.12.2\"\n + \ },\n \"sha256Digest\": \"54880b35deac43f659d9e2b5a8a1f7437898eaf848c002a5733487bed6c9b42e\"\n + \ },\n {\n \"downloadUrl\": \"https://ascprivatecli.blob.core.windows.net/cli-extension/spring_cloud-2.12.3-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-2.12.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"2.12.3\"\n + \ },\n \"sha256Digest\": \"026c63b42b7b63464e0016e7321c074b99600656d9d5b57c4bada27d268deb28\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.0.0-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-3.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.25.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"3.0.0\"\n + \ },\n \"sha256Digest\": \"4d7f70bd517be50771f0e0eb94ca2535ed5907f29b7929534f1dd6a26684a805\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.0.1-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-3.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.25.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"3.0.1\"\n + \ },\n \"sha256Digest\": \"1142951621ab8ae41759275261cdd0507d11544ba03ad57e02c880e074eabafd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.1.1-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-3.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.34.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"3.1.1\"\n + \ },\n \"sha256Digest\": \"24d37afd816a9b6cbad6e3e0fae2c515ed2f11639cf7944266d128f01e98a0b9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.1.2-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-3.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"3.1.2\"\n + \ },\n \"sha256Digest\": \"f30828da4055c5cb4e88e981a6f883c304fafea747ecac46e92f2b65a04e1dc8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.1.3-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-3.1.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"3.1.3\"\n + \ },\n \"sha256Digest\": \"2826a70767439d7a3e2ff1446f13bf6a5075359f37d675181d8d97f75808fee8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.1.4-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-3.1.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"3.1.4\"\n + \ },\n \"sha256Digest\": \"25259140040004f711753a4eb980153d60ceb0560e534705c90141082a1bb085\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.1.5-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-3.1.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.30.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"3.1.5\"\n + \ },\n \"sha256Digest\": \"a8c92bcfe2d1a36174c58966947dd928f9d40bd42e0a2015fb981e6d4f99b4ae\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.1.7-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-3.1.7-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"3.1.7\"\n + \ },\n \"sha256Digest\": \"c65cbdd85cb30d0219bb942d7d7bb8e1fedd7d984f24aba60ada83dcfc626a6a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.1.8-py3-none-any.whl\",\n + \ \"filename\": \"spring_cloud-3.1.8-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring-cloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring-cloud\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring-cloud Extension\",\n \"version\": \"3.1.8\"\n + \ },\n \"sha256Digest\": \"14993abe3524c28a42b2e9ba0f0a8a7083162ba9174975e09d8cea834b9829ee\"\n + \ }\n ],\n \"ssh\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/ssh-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"ssh-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ryrossit@microsoft.com\",\n + \ \"name\": \"Ryan Rossiter\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography (==2.8.0)\",\n \"paramiko + (==2.6.0)\"\n ]\n }\n ],\n + \ \"summary\": \"SSH into VMs\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"cf39bfcf542db4a7a3acf119f4ea71f17626eaaac7fe480d058962fec3d3ff25\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-0.1.4-py3-none-any.whl\",\n + \ \"filename\": \"ssh-0.1.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ryrossit@microsoft.com\",\n + \ \"name\": \"Ryan Rossiter\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography (==2.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"SSH into VMs\",\n \"version\": \"0.1.4\"\n },\n + \ \"sha256Digest\": \"2dc5540957fa050c986b6cfa5c57b5e0bb06f3d46d868d54d4418b15e4082c5e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-0.1.5-py3-none-any.whl\",\n + \ \"filename\": \"ssh-0.1.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography (==2.8.0)\"\n ]\n + \ }\n ],\n \"summary\": + \"SSH into VMs\",\n \"version\": \"0.1.5\"\n },\n + \ \"sha256Digest\": \"070cc0bf147852872908ca9910d668c6f9b93b89d5cc6d0ec2869142635e6ae6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-0.1.6-py3-none-any.whl\",\n + \ \"filename\": \"ssh-0.1.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography\"\n ]\n + \ }\n ],\n \"summary\": + \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \"version\": + \"0.1.6\"\n },\n \"sha256Digest\": \"a4de20dd94051c4b9143805cb9531075f56df5f56106c6aaed5e2fd1ffd62c3d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-0.1.7-py3-none-any.whl\",\n + \ \"filename\": \"ssh-0.1.7-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography\",\n \"oschmod + (==0.3.12)\"\n ]\n }\n ],\n + \ \"summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH + Certificates\",\n \"version\": \"0.1.7\"\n },\n + \ \"sha256Digest\": \"680bd601879c1687faf5d7c15a7fac15887ffa613ff1b37f6fd6e98ba96998ff\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-0.1.8-py3-none-any.whl\",\n + \ \"filename\": \"ssh-0.1.8-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography\"\n ]\n + \ }\n ],\n \"summary\": + \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \"version\": + \"0.1.8\"\n },\n \"sha256Digest\": \"bd01a2dfb72acb547161338de894395db8b939e892ce19e4ec99fa3ce18f78f9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"ssh-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography\"\n ]\n + \ }\n ],\n \"summary\": + \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"12073d047fbedb7daca67c7ccbb3b063d0c82c01d02d00a28b9c560702fda099\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"ssh-1.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography\"\n ]\n + \ }\n ],\n \"summary\": + \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \"version\": + \"1.0.1\"\n },\n \"sha256Digest\": \"f54a2bcc784316c451dc4a776f3ca910fb804296e96b9d8ff7b262754a7e79e0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"ssh-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography\",\n \"oschmod + (==0.3.12)\"\n ]\n }\n ],\n + \ \"summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH + Certificates\",\n \"version\": \"1.1.0\"\n },\n + \ \"sha256Digest\": \"3256339030666983a84dde5a5198cff91a4d555c785cf0480de61b4d9a495550\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.1.1-py3-none-any.whl\",\n + \ \"filename\": \"ssh-1.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"cryptography\",\n \"oschmod + (==0.3.12)\"\n ]\n }\n ],\n + \ \"summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH + Certificates\",\n \"version\": \"1.1.1\"\n },\n + \ \"sha256Digest\": \"71c6ffe17e95734735d2f8387cd643cb11b1628d6b66751507f7aea6931d9855\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.1.2-py3-none-any.whl\",\n + \ \"filename\": \"ssh-1.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"oschmod (==0.3.12)\"\n ]\n + \ }\n ],\n \"summary\": + \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \"version\": + \"1.1.2\"\n },\n \"sha256Digest\": \"e50513e5985024936c5f65ae564817e5705ccda69046abcbabd2418f5753d48e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.1.3-py3-none-any.whl\",\n + \ \"filename\": \"ssh-1.1.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.4.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"oschmod (==0.3.12)\"\n ]\n + \ }\n ],\n \"summary\": + \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \"version\": + \"1.1.3\"\n },\n \"sha256Digest\": \"7cc245377b2a287b6ca4d2b47119ee48a1c5aa18443db00e6ea0e071825f7adf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.1.4-py3-none-any.whl\",\n + \ \"filename\": \"ssh-1.1.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"oschmod (==0.3.12)\"\n ]\n + \ }\n ],\n \"summary\": + \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \"version\": + \"1.1.4\"\n },\n \"sha256Digest\": \"410147d46141519be32f3b572cbc4654d8d8d3ec9e6a86a66bb08f783c9ecc5a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.1.5-py3-none-any.whl\",\n + \ \"filename\": \"ssh-1.1.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"oschmod (==0.3.12)\"\n ]\n + \ }\n ],\n \"summary\": + \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \"version\": + \"1.1.5\"\n },\n \"sha256Digest\": \"c0377075050af03caf70b27449efac36b2151fb34fd11f184de8bf79041a9de9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-1.1.6-py3-none-any.whl\",\n + \ \"filename\": \"ssh-1.1.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"oschmod (==0.3.12)\"\n ]\n + \ }\n ],\n \"summary\": + \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \"version\": + \"1.1.6\"\n },\n \"sha256Digest\": \"ed727dbe18994db27d22b4c1fdc28a6bfa0a91670042389b0534838f9eb235e1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-2.0.0-py3-none-any.whl\",\n + \ \"filename\": \"ssh-2.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"oschmod (==0.3.12)\"\n ]\n + \ }\n ],\n \"summary\": + \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \"version\": + \"2.0.0\"\n },\n \"sha256Digest\": \"4ea13f7043fd7ff624131818724068c8aa730e65cdf069df185d4e152ac2b2ab\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-2.0.1-py3-none-any.whl\",\n + \ \"filename\": \"ssh-2.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"oschmod (==0.3.12)\"\n ]\n + \ }\n ],\n \"summary\": + \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \"version\": + \"2.0.1\"\n },\n \"sha256Digest\": \"a5da31dcdd83ad793a607ace5db3f86d04cb6f58910184f86dee2218aad79329\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-2.0.2-py3-none-any.whl\",\n + \ \"filename\": \"ssh-2.0.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"oschmod (==0.3.12)\",\n \"oschmod==0.3.12\"\n + \ ]\n }\n ],\n + \ \"summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH + Certificates\",\n \"version\": \"2.0.2\"\n },\n + \ \"sha256Digest\": \"fe74b89a8b7ae41f0cb021a3211b5bdf3584ba99d907c7928ba6f4594ca723e9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-2.0.3-py3-none-any.whl\",\n + \ \"filename\": \"ssh-2.0.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"oschmod (==0.3.12)\",\n \"oschmod==0.3.12\"\n + \ ]\n }\n ],\n + \ \"summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH + Certificates\",\n \"version\": \"2.0.3\"\n },\n + \ \"sha256Digest\": \"c63e790eab8b4e939551fa4a96f691c823c5dfe15de3a05a2db27108236430e3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-2.0.4-py3-none-any.whl\",\n + \ \"filename\": \"ssh-2.0.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"oras (==0.1.30)\",\n \"oras==0.1.30\",\n + \ \"oschmod (==0.3.12)\",\n \"oschmod==0.3.12\"\n + \ ]\n }\n ],\n + \ \"summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH + Certificates\",\n \"version\": \"2.0.4\"\n },\n + \ \"sha256Digest\": \"f9154c0cae61ff13a8da589fff05a55dc8127120d720b7bf633efba28fb29034\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-2.0.5-py3-none-any.whl\",\n + \ \"filename\": \"ssh-2.0.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"oras (==0.1.30)\",\n \"oras==0.1.30\",\n + \ \"oschmod (==0.3.12)\",\n \"oschmod==0.3.12\"\n + \ ]\n }\n ],\n + \ \"summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH + Certificates\",\n \"version\": \"2.0.5\"\n },\n + \ \"sha256Digest\": \"80c98b10d7bf1ce4005b7694aedd05c47355456775ba6125308be65fb0fefc93\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-2.0.6-py3-none-any.whl\",\n + \ \"filename\": \"ssh-2.0.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"oras (==0.1.30)\",\n \"oras==0.1.30\",\n + \ \"oschmod (==0.3.12)\",\n \"oschmod==0.3.12\"\n + \ ]\n }\n ],\n + \ \"summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH + Certificates\",\n \"version\": \"2.0.6\"\n },\n + \ \"sha256Digest\": \"3d2206b4e6bdd56c69cc509ab99e5de6dc7f66d091b0185b7a3b557d8dc182cb\"\n + \ }\n ],\n \"stack-hci\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"9095702d720e24173616232ffab42bdf121dd82eeda48becd52d141f73c35bb3\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci-0.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"dc6bc793de093c9e2be98d68379f7178ee67231058ece34bbf2f8e2d9f89f2e0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci-0.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension\",\n \"version\": \"0.1.2\"\n + \ },\n \"sha256Digest\": \"c9c2359f5684f7c59600e55b2e99cdcd913f59dc2d7e5cc7d5e493b13b1248d1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.3-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci-0.1.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension\",\n \"version\": \"0.1.3\"\n + \ },\n \"sha256Digest\": \"c47cafffa1b541dd9e42100339ed4d22184a22974c804641a7e5adba4a756ba1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.4-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci-0.1.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension\",\n \"version\": \"0.1.4\"\n + \ },\n \"sha256Digest\": \"2da335cae454c13cd02d8bf54ba2131f42998a35f619f7ba3937e9f93d592c29\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.5-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci-0.1.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/stack-hci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension\",\n \"version\": \"0.1.5\"\n + \ },\n \"sha256Digest\": \"8edc35b629c2d86d0f88cdf3e63e16db4af13af1d69723edf541f9dce216e511\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.6-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci-0.1.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/stack-hci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension\",\n \"version\": \"0.1.6\"\n + \ },\n \"sha256Digest\": \"35077970e30adc39d6bd2292d29fba35b274a09fc7f271d8ee0e9c01ceeba20e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.7-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci-0.1.7-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/stack-hci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension\",\n \"version\": \"0.1.7\"\n + \ },\n \"sha256Digest\": \"e94f1fa190d504d080a6ad34f631f95aacfd1a0c56268d6d479267c9af8e27ba\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.8-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci-0.1.8-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.48.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/stack-hci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension\",\n \"version\": \"0.1.8\"\n + \ },\n \"sha256Digest\": \"8fd1859564ff3fcb15688902f73ea7ee014423c74a0ae07ebf53e9fcfdb99dc4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.50.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/stack-hci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"58074ff73a72a1a9c76d406a4b6988a7b714dfaa9259b92172a7b6f66680db31\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stack_hci-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.54.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/stack-hci\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"9bb0350f6c28ac2068a5a4a20bbcf74ae34b392d05eb148c403c618525cbadef\"\n + \ }\n ],\n \"stack-hci-vm\": [\n {\n \"downloadUrl\": + \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/stack_hci_vm-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci_vm-0.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/msk8s/_git/azstackhci-util?version=GBmain\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci-vm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension \",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"40de4e8a6fbde3afc3f760b6014ecc4d37e8e0ec72f4ff2a5d009cfadbf9938b\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/stack_hci_vm-0.1.6-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci_vm-0.1.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/msk8s/_git/azstackhci-util?version=GBmain\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci-vm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension \",\n \"version\": + \"0.1.6\"\n },\n \"sha256Digest\": \"1d4a811cfdb511e3ca394ecbfbe5266c9f91db590fd01743baf23538d3a77ffc\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/stack_hci_vm-0.1.8-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci_vm-0.1.8-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci-vm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci-vm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Stack-HCi-VM Extension\",\n \"version\": \"0.1.8\"\n + \ },\n \"sha256Digest\": \"9d92e9f019d0790be488b92fe84fa4ddfa2cd2b7c227808d6553abdcda3664af\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/stack_hci_vm-0.1.11.1-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci_vm-0.1.11.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/msk8s/_git/azstackhci-util?version=GBmain\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci-vm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools AzureStackHCIClient Extension \",\n \"version\": + \"0.1.11\"\n },\n \"sha256Digest\": \"cc99134288545178d08b18abd5b7c9e3d099d2add8b52ab9308f6c5fd97ae60c\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/stack_hci_vm-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci_vm-1.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci-vm\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"stack-hci-vm\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-identity\",\n \"azure-identity\",\n + \ \"azure-mgmt-resourcegraph\",\n \"azure-mgmt-resourcegraph\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Stack-HCi-VM + Extension\",\n \"version\": \"1.0.1\"\n },\n + \ \"sha256Digest\": \"f07527adb8d0b762619eaa67d270119e0170485b549fa3fcc1df6c93b9c21a88\"\n + \ },\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/stack_hci_vm-1.1.2-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci_vm-1.1.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci-vm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci-vm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Stack-HCi-VM Extension\",\n \"version\": \"1.1.2\"\n + \ },\n \"sha256Digest\": \"eac2401a6aebfcacd2f9d7dd468c00024b2b83ecfe72e33c77697b04a2af0d20\"\n + \ },\n {\n \"downloadUrl\": \"https://hciarcvmsstorage.z13.web.core.windows.net/cli-extensions/stack_hci_vm-1.1.11-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci_vm-1.1.11-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci-vm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci-vm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Stack-HCi-VM Extension\",\n \"version\": \"1.1.11\"\n + \ },\n \"sha256Digest\": \"35810b2c3e02a7e3f0fa985c5bd443fbf94ccd72ac28b6ebff5aad1b2d7469aa\"\n + \ },\n {\n \"downloadUrl\": \"https://hciarcvmsstorage.z13.web.core.windows.net/cli-extensions/stack_hci_vm-1.1.12-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci_vm-1.1.12-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci-vm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci-vm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Stack-HCi-VM Extension\",\n \"version\": \"1.1.12\"\n + \ },\n \"sha256Digest\": \"de1cd45f5d1cf72dbec728b41ac6cd686a1c0f254cdc7ee361758d5dd8dc2974\"\n + \ },\n {\n \"downloadUrl\": \"https://hciarcvmsstorage.z13.web.core.windows.net/cli-extensions/stack_hci_vm-1.1.14-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci_vm-1.1.14-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci-vm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci-vm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Stack-HCi-VM Extension\",\n \"version\": \"1.1.14\"\n + \ },\n \"sha256Digest\": \"c48b293937a50a7bdcbbb8d5028062f08f65bf3cf7e88bf723ea90935f2ddb9c\"\n + \ },\n {\n \"downloadUrl\": \"https://hciarcvmsstorage.z13.web.core.windows.net/cli-extensions/stack_hci_vm-1.1.16-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci_vm-1.1.16-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci-vm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci-vm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Stack-HCi-VM Extension\",\n \"version\": \"1.1.16\"\n + \ },\n \"sha256Digest\": \"6b08c750b3c3898aab17c459ff626210c17ad12f960f2ab89204765a17d530da\"\n + \ },\n {\n \"downloadUrl\": \"https://hciarcvmsstorage.z13.web.core.windows.net/cli-extensions/stack_hci_vm-1.1.20-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci_vm-1.1.20-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci-vm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci-vm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Stack-HCi-VM Extension\",\n \"version\": \"1.1.20\"\n + \ },\n \"sha256Digest\": \"7de544b8058ab11d9713b551db65aeaec6b8e5832cdadbbf26ccb7a4a282db6b\"\n + \ },\n {\n \"downloadUrl\": \"https://hciarcvmsstorage.z13.web.core.windows.net/cli-extensions/stack_hci_vm-1.2.3-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci_vm-1.2.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci-vm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci-vm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Stack-HCi-VM Extension\",\n \"version\": \"1.2.3\"\n + \ },\n \"sha256Digest\": \"356ac7cb14af4c617b0f87ff5b9698eea08f56da84979c07f90fcc0f34cc8287\"\n + \ },\n {\n \"downloadUrl\": \"https://hciarcvmsstorage.z13.web.core.windows.net/cli-extensions/stack_hci_vm-1.3.0-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci_vm-1.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci-vm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci-vm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Stack-HCi-VM Extension\",\n \"version\": \"1.3.0\"\n + \ },\n \"sha256Digest\": \"19553e50d59cafcc19166be7e91be43c725f7abae1d8338914f8e6043853fc09\"\n + \ },\n {\n \"downloadUrl\": \"https://hciarcvmsstorage.z13.web.core.windows.net/cli-extensions/stack_hci_vm-1.4.3-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci_vm-1.4.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci-vm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci-vm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Stack-HCi-VM Extension\",\n \"version\": \"1.4.3\"\n + \ },\n \"sha256Digest\": \"4f5ba538e830dcef195147c8ba71c739b2bd494cbb9a8ab51e831c40bc1f3329\"\n + \ }\n ],\n \"standbypool\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/standbypool-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"standbypool-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/standbypool\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"standbypool\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Standbypool Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"44c03e320c8b49f52390e3c11d61b25a67afeffc18d62baa522c373142de0e15\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/standbypool-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"standbypool-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/standbypool\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"standbypool\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Standbypool Extension.\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"5a5639537d26ffbb06f38e68bd6c939ed90905d9acb18c07161823732fb27cf9\"\n + \ }\n ],\n \"staticwebapp\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/staticwebapp-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"staticwebapp-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.39.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/staticwebapp\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"staticwebapp\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Staticwebapp Extension\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"fb1dcd876fc2d829cc7a1cc545e9445364d43357d888bb3deeb36a716b805717\"\n + \ }\n ],\n \"storage-actions\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_actions-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"storage_actions-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-actions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-actions\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageActions Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"07c5be256edbbe2c81d839e4c6d3d917a56b93921515028cf962393e1176331b\"\n + \ }\n ],\n \"storage-blob-preview\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.9.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"3407bc6ea0425aab5c5a495c447b0d9ec4f4a360f08bdfd68cfd7a6504789231\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.12.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"fc96b22fd656fcba97b8ee3283a1bead65b941aae10c174f597703ad7d8a5114\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.3.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.12.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.3.0\"\n },\n \"sha256Digest\": \"daec951de77a200f3479c00ebf1015534891592cfd4bbf7873c5784bdd3f57a0\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.4.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.4.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.14.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.4.0\"\n },\n \"sha256Digest\": \"03ef575ccf01776e99f8adb1882c77ee41278ff18901556424c753279724c9a3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.4.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.4.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.16.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.4.1\"\n },\n \"sha256Digest\": \"4cb5caa42e4c70db8ea5b33ad663246419003af30234f93ccef9aa2252e294d3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.5.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.5.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.16.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.5.0\"\n },\n \"sha256Digest\": \"a3303da3925f8ad83c8eeced02f6b8897b355a3cc249424a7e70c621ee0d3642\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.5.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.5.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.5.1\"\n },\n \"sha256Digest\": \"d09bf0befecb5f64b803a1873e666900d3b2d0ca9fe6eea5bd959a68254339a8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.5.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.5.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.5.2\"\n },\n \"sha256Digest\": \"adabed83d8fad6a23dda1763edcef110962a4abf04450e1461a1345572e7052a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.6.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.6.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.6.0\"\n },\n \"sha256Digest\": \"5ce281e94a4aff64964d80ea042f3a7fee472848575bbe796b6ff764ae67e478\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.6.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.6.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.6.1\"\n },\n \"sha256Digest\": \"1f2362df611cb017b516d5b9a4389f194066dcf308e8cbc52ea7868d0c5f3f80\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.6.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.6.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-blob-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.6.2\"\n },\n \"sha256Digest\": \"e9bae6062186e6241fc77ab2162767eab4d4b593266faa8f81a6ff8a8917625e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.7.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.7.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-blob-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.7.0\"\n },\n \"sha256Digest\": \"a2015b7a7b06ec3f013a3911db35ec463dd8b75d6bb2824330b5857125ae7767\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.7.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.7.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-blob-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.7.1\"\n },\n \"sha256Digest\": \"af7bbbeb78d7c080bf0fb1637484e7c70917b2f695fbed8ddcc4b55b52a4db19\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-0.7.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-0.7.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-blob-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"0.7.2\"\n },\n \"sha256Digest\": \"002b7779f4c6531fdb714f77bcea5d3d96007a7ff5b86869f8e56aad98298b23\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-blob-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"1ffe451e41657c8f28a22abee387371d11cedd80d2e52cfcbed0adac0a917b41\"\n + \ }\n ],\n \"storage-mover\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_mover-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"storage_mover-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-mover\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-mover\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageMover Extension.\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"0f8e5c21714cf107848671f22b9ff029bc188047dae9adea8d9832c33173772d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_mover-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"storage_mover-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-mover\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-mover\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageMover Extension.\",\n \"version\": \"0.1.1\"\n + \ },\n \"sha256Digest\": \"0576833f2e974605df3312adb0a0e55d7f8486d240541990b08f9f51c111744e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_mover-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"storage_mover-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.50.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-mover\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-mover\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageMover Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"2682859ea376194a6942713ad673fd426555ce2d4ebe9545e45d18da4fed98b1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_mover-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"storage_mover-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.51.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-mover\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-mover\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageMover Extension.\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"135a11f6d9f0b833ce3cc83914e289852f1f786083d294f647a0f90e01666f0d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_mover-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"storage_mover-1.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-mover\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-mover\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageMover Extension.\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"7d768aca50aa98978a0d929c46cffe60bf488a527665485da631b33444cae24c\"\n + \ }\n ],\n \"storage-preview\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.2.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.52\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.2.8\"\n + \ },\n \"sha256Digest\": \"a3d48247051e95847ded28217433c4b98fc02d6ee21eedfcb24dd43f7360569d\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.2.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.2.9\"\n + \ },\n \"sha256Digest\": \"880e01de0fab8893770497ef9410559ae223a1f09dbd6a23712226ab4e2d5ecb\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.2.10-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.2.10\"\n + \ },\n \"sha256Digest\": \"8c87013be456849f27ea7f76df284e998e6f3911d3de478ec19abe84bb30fbe9\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.11-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.2.11-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.2.11\"\n + \ },\n \"sha256Digest\": \"b00ccc8846bbb389b95064e7e9b547cbd877b0a596b8c36d86982be435695d5c\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.2.12-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.2.12-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.2.12\"\n + \ },\n \"sha256Digest\": \"5bd273bf4c1952f4576faf05ed80fd73b25f0f4d0be81fe0bbf471019705a6bb\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.3.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.6.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.3.0\"\n + \ },\n \"sha256Digest\": \"7fb50e37a0e271c118124b4488474e3c2957cffe1b319660bd3df91534911008\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.4.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.4.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.4.0\"\n + \ },\n \"sha256Digest\": \"822137d0987829d27537f36923d31d69371e756f8adc686ccdd5a2e03a40ab5f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.5.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.5.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.5.0\"\n + \ },\n \"sha256Digest\": \"7ec8887f3f83a4f67613a22f1eea7f9c5968c9b108d74c7299eacc400e40c710\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.6.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.6.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.6.0\"\n + \ },\n \"sha256Digest\": \"9431e5bba2ddd8d7850c1e3b4fc2a29dd0cc38322f1b04247bf7f7a5f3aacf4a\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.6.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.6.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.6.1\"\n + \ },\n \"sha256Digest\": \"93cf02038cb209c2baee6e2a4bf17e0c8a8f55eb2c86c7678163499f84c31a75\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storage_preview-0.7.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.7.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.7.0\"\n + \ },\n \"sha256Digest\": \"3b2a463e7852cd1153372b3dd9522c007dee8daff53ccf26fda0c84b642e8367\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.7.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.7.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.13.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.7.1\"\n + \ },\n \"sha256Digest\": \"25f0848bb685c0886bc4e3074652af587c56edd7ee88fe60df93f8150a8c8caa\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.7.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.7.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.21.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-preview\",\n \"summary\": \"Provides a preview + for upcoming storage features.\",\n \"version\": \"0.7.2\"\n + \ },\n \"sha256Digest\": \"768aecf13a62b06fd26b9d15078da74c38541a2793208b8c434afc55b39c2c64\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.7.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.7.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.21.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"storage-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Provides a preview for upcoming storage features.\",\n \"version\": + \"0.7.3\"\n },\n \"sha256Digest\": \"ec0e700f8ba51eca45198d5907d056780946e0b5ffa593d264598679e949dcb1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.7.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.7.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"storage-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Provides a preview for upcoming storage features.\",\n \"version\": + \"0.7.4\"\n },\n \"sha256Digest\": \"eede880e897e6fbfb7e631b91ee23b35229c1dbcefb5785279809d53a4568a87\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.8.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.8.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storage-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"storage-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Provides a preview for upcoming storage features.\",\n \"version\": + \"0.8.0\"\n },\n \"sha256Digest\": \"0187510c8ebf2312c8937ae364a723016f912ac237c40685e94bac505e097be0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.8.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.8.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"storage-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Provides a preview for upcoming storage features.\",\n \"version\": + \"0.8.1\"\n },\n \"sha256Digest\": \"1b31f65c2455974ffed95c2450a933714c3daa10b91972a9a65861ba496fa267\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.8.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.8.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"storage-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Provides a preview for upcoming storage features.\",\n \"version\": + \"0.8.2\"\n },\n \"sha256Digest\": \"7528528b799aa957d751aa28fc61be07bd999ce22d54748b4a308c7f0def7e94\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.8.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.8.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"storage-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Provides a preview for upcoming storage features.\",\n \"version\": + \"0.8.3\"\n },\n \"sha256Digest\": \"5ec7a8a7141fe3bef54b6ce570e542b6836933a43b992b918674d9c231e1f7dc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.8.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.8.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"storage-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Provides a preview for upcoming storage features.\",\n \"version\": + \"0.8.4\"\n },\n \"sha256Digest\": \"f72b944cdf6887d88b7b8271904b010816b595c9854743761092fca71600a196\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-0.9.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-0.9.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.25.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"storage-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Provides a preview for upcoming storage features.\",\n \"version\": + \"0.9.0\"\n },\n \"sha256Digest\": \"9cabf9a6cf901788983017b85e8d39ebb9f3ad080c75309e8855c614f0229f67\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.50.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"storage-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Provides a preview for upcoming storage features.\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"cd1ac15f3c962b6e22d374c2fc03ae04564f28334d019ba270716b53bca8cd7c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-1.0.0b2-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-1.0.0b2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"storage-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\",\n \"azure-core\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Provides a preview for upcoming storage + features.\",\n \"version\": \"1.0.0b2\"\n },\n + \ \"sha256Digest\": \"2de8fa421622928a308bb70048c3fdf40400bad3b34afd601d0b3afcd8b82764\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-1.0.0b3-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-1.0.0b3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"storage-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\",\n \"azure-core\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Provides a preview for upcoming storage + features.\",\n \"version\": \"1.0.0b3\"\n },\n + \ \"sha256Digest\": \"139bf5c03e9f57724a8da0b0887144bf2e9fe51f604cdc8c7d0d7398b29157e9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-1.0.0b4-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-1.0.0b4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"storage-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\",\n \"azure-core\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Provides a preview for upcoming storage + features.\",\n \"version\": \"1.0.0b4\"\n },\n + \ \"sha256Digest\": \"5c7aaed2e945b19f643f66c3c8ef3c59c64630549b44efd6df4f02ec6ce50e64\"\n + \ }\n ],\n \"storagesync\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/storagesync-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storagesync-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storagesync\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftStorageSync Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"a1d15edfcc18d9d301dea843cd7dce9845b8da6f6b1beb47a1bba35ff46eadde\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storagesync-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storagesync-0.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storagesync\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storagesync\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftStorageSync Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"06d5e71b42edf721c5624cfd286b8593c68316f2b0ea4edf60c7a74835a695e2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storagesync-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"storagesync-0.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/storagesync\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storagesync\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftStorageSync Extension\",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"498aff0d83037e11a668915788a7a78c981d7241ad31e9fb7cf2f27725253261\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storagesync-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"storagesync-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storagesync\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storagesync\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftStorageSync Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"1f6997e186199058e60d8fdc020c407d4f92d8e78286189c1887e57a371b43c1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storagesync-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storagesync-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storagesync\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storagesync\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftStorageSync Extension\",\n \"version\": + \"1.0.1\"\n },\n \"sha256Digest\": \"7f2ba91a7a44741f4384b44ba7cea73a8a03b5d385b43404cb4951dd2ea5dc5a\"\n + \ }\n ],\n \"stream-analytics\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/stream_analytics-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"stream_analytics-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stream-analytics\",\n \"summary\": \"Microsoft Azure + Command-Line Tools stream-analytics Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"e3a9048f289d1b870637e4b13c0ee1e877827834e1f71d31cb8161bacc441388\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stream_analytics-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"stream_analytics-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stream-analytics\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stream-analytics\",\n \"summary\": \"Microsoft Azure + Command-Line Tools StreamAnalyticsManagementClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"95fcd5a67813e6961026efcd5fce764ce968c15c1ae03ffd7854e6e0f6c8bebc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stream_analytics-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"stream_analytics-0.1.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/stream-analytics\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stream-analytics\",\n \"summary\": \"Microsoft Azure + Command-Line Tools StreamAnalyticsManagementClient Extension\",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"6a41159bb00f7974017461c3daec5d24385a50491d2157e82b1853f72d12b62c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/stream_analytics-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"stream_analytics-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/stream-analytics\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stream-analytics\",\n \"summary\": \"Microsoft Azure + Command-Line Tools StreamAnalyticsManagementClient Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"15443fd8a73d319a5c9fbc586c9727d1ce1a31e11fd3f3c7e4fcbc97ad076aaa\"\n + \ }\n ],\n \"subscription\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/subscription-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"subscription-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"classifiers\": [\n + \ \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"wilcob@microsoft.com\",\n + \ \"name\": \"Wilco Bauwer\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"subscription\",\n \"summary\": \"Support for subscription + management preview.\",\n \"version\": \"0.1.3\"\n },\n + \ \"sha256Digest\": \"74388eb7d4976c620bd41ef577cdb9284cd9a3e38dc4756796d091a7c8193267\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/subscription-0.1.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"subscription-0.1.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.30\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"wilcob@microsoft.com\",\n + \ \"name\": \"Wilco Bauwer\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"subscription\",\n \"summary\": \"Support for subscription + management preview.\",\n \"version\": \"0.1.4\"\n },\n + \ \"sha256Digest\": \"0f28407be656e9930d06240b95bf1ccc8ebbbc9fc961cbd9e4b0575e1867b03d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/subscription-0.1.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"subscription-0.1.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.30\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"wilcob@microsoft.com\",\n + \ \"name\": \"Wilco Bauwer\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/subscription\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"subscription\",\n \"summary\": \"Support for subscription + management preview.\",\n \"version\": \"0.1.5\"\n },\n + \ \"sha256Digest\": \"ff7896aebc46862a6d30ac5f4cf64bdd40cb50e5437cea299590896d75f1013e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/subscription-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"subscription-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/subscription\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"subscription\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Subscription Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"3f3bb4fbb761174d13a0f863362b74f388bc648f7f296f9b6e2191b35507ae4f\"\n + \ }\n ],\n \"support\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/support-0.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"support-0.1.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.81\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-cli-extensions/tree/master/src/support\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"support\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Support Extension\",\n \"version\": \"0.1.1\"\n },\n + \ \"sha256Digest\": \"e74e1b769155a08226d103781dbec7a20b517c37f4b75871172b2769e37676fa\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/support-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"support-1.0.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.81\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-cli-extensions/tree/master/src/support\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"support\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Support Extension\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"3646b584af5fb68e57a153991cdbf049cd6f8e471c36b28c7f3bb642ecc341d8\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/support-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"support-1.0.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.81\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-cli-extensions/tree/master/src/support\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"support\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Support Extension\",\n \"version\": \"1.0.1\"\n },\n + \ \"sha256Digest\": \"5490c5dbe52b0457b51a327426cad741005f8afc24c13cefefb9fe8694a558f7\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/support-1.0.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"support-1.0.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.81\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-cli-extensions/tree/master/src/support\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"support\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Support Extension\",\n \"version\": \"1.0.2\"\n },\n + \ \"sha256Digest\": \"815e9ed05789f4cd00eb00cbae0e6339e7519c0c6d816bf3aa302af534acef5b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/support-1.0.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"support-1.0.3-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.81\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-cli-extensions/tree/master/src/support\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"support\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Support Extension\",\n \"version\": \"1.0.3\"\n },\n + \ \"sha256Digest\": \"9f5b4ebc6a90b48d2a3c18ce7b74d89240275dcf23aa836b8509882b1ee28c56\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/support-1.0.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"support-1.0.4-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.81\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-cli-extensions/tree/main/src/support\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"support\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Support Extension\",\n \"version\": \"1.0.4\"\n },\n + \ \"sha256Digest\": \"ac554e2b6362a9a6ff8e03000730df31dd72781aba8bbdcf05ceb44ce1b680a0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/support-2.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"support-2.0.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-cli-extensions/tree/main/src/support\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"support\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Support Extension\",\n \"version\": \"2.0.0\"\n },\n + \ \"sha256Digest\": \"5dde97f8fb12eaa258530f68ec2cae00a957f30479835e9f5ed057940312741a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/support-2.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"support-2.0.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-cli-extensions/tree/main/src/support\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"support\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Support Extension\",\n \"version\": \"2.0.1\"\n },\n + \ \"sha256Digest\": \"3f070154f839464aa24b54990d87d2dba99d6da60ec3ef314a74ba22c268fec4\"\n + \ }\n ],\n \"terraform\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/terraform-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"terraform-1.0.0b1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/terraform\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"terraform\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Terraform Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"80fde2b896b707fd83f83821809682079bd3bb032aa9cb04ba0d2595b3673f27\"\n + \ }\n ],\n \"timeseriesinsights\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"timeseriesinsights-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/src/timeseriesinsights\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"timeseriesinsights\",\n \"summary\": \"Microsoft Azure + Command-Line Tools TimeSeriesInsightsClient Extension\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"a1cd9f9177ff31010638048d3737dc39fac144d9ca107fe4eafc4339386d71cd\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"timeseriesinsights-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/src/timeseriesinsights\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"timeseriesinsights\",\n \"summary\": \"Microsoft Azure + Command-Line Tools TimeSeriesInsightsClient Extension\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"3276b876cad87ef8b29e6af58294fc7ff20b9d2d0187ce84e2b15ba8917b00d9\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"timeseriesinsights-0.1.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/src/timeseriesinsights\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"timeseriesinsights\",\n \"summary\": \"Microsoft Azure + Command-Line Tools TimeSeriesInsightsClient Extension\",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"3caba62be85114e44cd61c8541df49c7ff67b76b8c26e53e198b00a98a907417\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.1.3-py3-none-any.whl\",\n + \ \"filename\": \"timeseriesinsights-0.1.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/src/timeseriesinsights\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"timeseriesinsights\",\n \"summary\": \"Microsoft Azure + Command-Line Tools TimeSeriesInsightsClient Extension\",\n \"version\": + \"0.1.3\"\n },\n \"sha256Digest\": \"84009856e1a9e6e6b178425099c2e1eaa4753ba5e375426a504f92bd4b9a21aa\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"timeseriesinsights-0.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isExperimental\": + true,\n \"azext.minCliCoreVersion\": \"2.11.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/timeseriesinsights\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"timeseriesinsights\",\n \"summary\": \"Microsoft Azure + Command-Line Tools TimeSeriesInsightsClient Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"79f257abed8ac699a395e1c61351cd2c68f3a1844d3369aca5b346b2b1c0aa10\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"timeseriesinsights-0.2.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/timeseriesinsights\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"timeseriesinsights\",\n \"summary\": \"Microsoft Azure + Command-Line Tools TimeSeriesInsightsClient Extension\",\n \"version\": + \"0.2.1\"\n },\n \"sha256Digest\": \"6ec3fe5ff3d92c3c2c8ba581af679567bfc430dd38fa70945b43378cf9b81ff2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"timeseriesinsights-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.50.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/timeseriesinsights\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"timeseriesinsights\",\n \"summary\": \"Microsoft Azure + Command-Line Tools TimeSeriesInsightsClient Extension\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"c578804a6cfbb4ef8ab91de2130bba8f6139f2fadea4ed1e38b05ea62c7aa95d\"\n + \ }\n ],\n \"traffic-collector\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/traffic_collector-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"traffic_collector-0.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.39.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/traffic-collector\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"traffic-collector\",\n \"summary\": \"Microsoft Azure + Command-Line Tools TrafficCollector Extension.\",\n \"version\": + \"0.1.0\"\n },\n \"sha256Digest\": \"c148d0db3dc2284f30fe8d9cce4cde9be7f93b18664aae54d70622fd86a09b3a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/traffic_collector-0.1.1-py3-none-any.whl\",\n + \ \"filename\": \"traffic_collector-0.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.40.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/traffic-collector\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"traffic-collector\",\n \"summary\": \"Microsoft Azure + Command-Line Tools TrafficCollector Extension.\",\n \"version\": + \"0.1.1\"\n },\n \"sha256Digest\": \"8fbce712f8edcedf422c463f6b970fa7bdd94a452887ca5ddefb4fb00735acb5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/traffic_collector-0.1.2-py3-none-any.whl\",\n + \ \"filename\": \"traffic_collector-0.1.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.40.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/traffic-collector\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"traffic-collector\",\n \"summary\": \"Microsoft Azure + Command-Line Tools TrafficCollector Extension.\",\n \"version\": + \"0.1.2\"\n },\n \"sha256Digest\": \"98bda4d9a9233efb0ae1c5fae1a6c2a42942e8a71b0ebf19d3a7193548b13ff2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/traffic_collector-0.1.3-py3-none-any.whl\",\n + \ \"filename\": \"traffic_collector-0.1.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.40.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/traffic-collector\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"traffic-collector\",\n \"summary\": \"Microsoft Azure + Command-Line Tools TrafficCollector Extension.\",\n \"version\": + \"0.1.3\"\n },\n \"sha256Digest\": \"a144a4fda3bce84db22277bd8611084ae1ae39e0bb8c7b50619ec378711f57ba\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/traffic_collector-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"traffic_collector-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.40.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/traffic-collector\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"traffic-collector\",\n \"summary\": \"Microsoft Azure + Command-Line Tools TrafficCollector Extension.\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"4695abb53723ea509f0f7a0bc6d4f4be5cc0382fe89b76671ee0785a05157dfc\"\n + \ }\n ],\n \"trustedsigning\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/trustedsigning-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"trustedsigning-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/trustedsigning\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"trustedsigning\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Trustedsigning Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"d49d6fe7430ae84096cb4914532a2abc8d9dc2bb46ca33226b686bc7a6e7fc37\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/trustedsigning-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"trustedsigning-1.0.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/trustedsigning\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"trustedsigning\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Trustedsigning Extension.\",\n \"version\": \"1.0.0b2\"\n + \ },\n \"sha256Digest\": \"c3ae869c1371493180b9ed71db0bdc3842bad54c8832beb6007118d26bed71e8\"\n + \ }\n ],\n \"virtual-network-manager\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-0.5.1-py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_manager-0.5.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/network-manager\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-manager\",\n \"summary\": \"Microsoft + Azure Command-Line Tools NetworkManagementClient Extension\",\n \"version\": + \"0.5.1\"\n },\n \"sha256Digest\": \"3c633cc53b341ae78514a62ab8cd7faf13c211e98a1c464eae2f636030d1e090\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-0.5.2-py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_manager-0.5.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/network-manager\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-manager\",\n \"summary\": \"Microsoft + Azure Command-Line Tools NetworkManagementClient Extension\",\n \"version\": + \"0.5.2\"\n },\n \"sha256Digest\": \"a115ac51ef73b6ba377b289f15b3afe87b392bd462ae50c21c91b9f7fc2288c8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-0.5.3-py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_manager-0.5.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/network-manager\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-manager\",\n \"summary\": \"Microsoft + Azure Command-Line Tools NetworkManagementClient Extension\",\n \"version\": + \"0.5.3\"\n },\n \"sha256Digest\": \"6b956e955ac01eec26f1135cdadb58e4bc7349a7c3e4064a077433ddf88cccf9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-0.6.0-py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_manager-0.6.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/network-manager\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-manager\",\n \"summary\": \"Microsoft + Azure Command-Line Tools NetworkManagementClient Extension\",\n \"version\": + \"0.6.0\"\n },\n \"sha256Digest\": \"91215253b053ad19413345c789b5ed1cc79ab2af18624ad279dca24a7913730a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_manager-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/network-manager\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-manager\",\n \"summary\": \"Microsoft + Azure Command-Line Tools NetworkManagementClient Extension\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"094c473dc8feb568ae3ca3f7f716ab3adda4fb18e2b1db9579f13b8ad14d94cf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_manager-1.0.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/network-manager\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-manager\",\n \"summary\": \"Microsoft + Azure Command-Line Tools NetworkManagementClient Extension\",\n \"version\": + \"1.0.0b2\"\n },\n \"sha256Digest\": \"3a8476fa6dcc072b49be7bdd9e1926392be4d16e41e0efa631f7f2a873583ca1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_manager-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/network-manager\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-manager\",\n \"summary\": \"Microsoft + Azure Command-Line Tools NetworkManagementClient Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"4dbb5ddd86e2b2a0cb99e3e81f9f3b258c8a74490c91e94caa6f63e4b990ee48\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_manager-1.0.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/network-manager\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-manager\",\n \"summary\": \"Microsoft + Azure Command-Line Tools NetworkManagementClient Extension\",\n \"version\": + \"1.0.1\"\n },\n \"sha256Digest\": \"a18581c625791fb29736e7ec1b9e18d4a00f3765a8600192e10c892fd27b7ba1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_manager-1.2.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/network-manager\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-manager\",\n \"summary\": \"Microsoft + Azure Command-Line Tools NetworkManagementClient Extension\",\n \"version\": + \"1.2.0\"\n },\n \"sha256Digest\": \"7f9f239fd7904645beacc2b738dd4660fb36779966e9b2331c43826e37564793\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-1.3.0-py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_manager-1.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/network-manager\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-manager\",\n \"summary\": \"Microsoft + Azure Command-Line Tools NetworkManagementClient Extension\",\n \"version\": + \"1.3.0\"\n },\n \"sha256Digest\": \"f16f992f98fd03c01dcef8a40f9b84de2367ff9e8850b48663a9bb1cb55b7bd4\"\n + \ }\n ],\n \"virtual-network-tap\": [\n {\n + \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_network_tap-0.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_tap-0.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-network-tap\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-tap\",\n \"summary\": \"Manage virtual + network taps (VTAP).\",\n \"version\": \"0.1.0\"\n },\n + \ \"sha256Digest\": \"7e3f634f8eb701cf6fef504159785bc90e6f5bd2482e459469dd9ab30601aa35\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_tap-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_tap-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/virtual-network-tap\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-tap\",\n \"summary\": \"Manage virtual + network taps (VTAP).\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"ee5f6dcfc09fc09e0c3bbd386b4d3bc6cc1f8a3dde8ed550804f43ed4c3cb7ba\"\n + \ }\n ],\n \"virtual-wan\": [\n {\n \"downloadUrl\": + \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.1.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.1.2\"\n + \ },\n \"sha256Digest\": \"35d7b9f8b62167957708902b19a6c2f97ceaafa28abcba815b39a2d9040066f8\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.1.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.1.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.1.3\"\n + \ },\n \"sha256Digest\": \"10bc530d54677c0f24363326f28b0476a3324198417117e3effa031c20d6c2cb\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.0\"\n + \ },\n \"sha256Digest\": \"45b52f87cd76a269d8e6151782a437692cea3725b4f64d9d4d64cc2c4b49288f\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.1\"\n + \ },\n \"sha256Digest\": \"db108cf3fb9f3a49aea87f35d658b0bdc9c2321122b9a1ec1f58f4fecb0ebe90\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.2\"\n + \ },\n \"sha256Digest\": \"0b141457b8c3f57061f300dae18472ec9da96f4b4f9ddb9239a4a5dbda7c1ffd\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.3\"\n + \ },\n \"sha256Digest\": \"21e1333af42c80c094099212db57b5e7171afee8690f0de211fdf359e3f1da16\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.4\"\n + \ },\n \"sha256Digest\": \"236668a188121738975f85148957ce843dd43c8644f76c915dde9d2f8233c9e4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.5\"\n + \ },\n \"sha256Digest\": \"e16f67e75abfd1d462d16cc00cca97551c63c5d6f9d4bbc838b4f331b2c1072a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.6\"\n + \ },\n \"sha256Digest\": \"4c695172677a9397b94f335748ca1b10caa87d5dfbefe1975e73aae60bf8b69f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.7\"\n + \ },\n \"sha256Digest\": \"9358296298aa06595055b6d82ce3a4443b3a63dc4236f675e056769c5c633bc9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.8\"\n + \ },\n \"sha256Digest\": \"14568d2b5de27623558f6d4d26ce68a3b4af0a429cc82cbb06021942f7239a36\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.9\"\n + \ },\n \"sha256Digest\": \"ca3569805f44c420ed58719fb9e514d7fa28b84bec9fc1321702250cdd8fcbf0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.10-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.10\"\n + \ },\n \"sha256Digest\": \"eb0afdcc23910d9e7ec5a55c511f0e67c5d8c0229d84eaaa821b72ccb2468c23\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.11-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.11-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.11\"\n + \ },\n \"sha256Digest\": \"35899c30c1a7e7dd43b36895deac4eb0accbb88c98d2e8c5c41dd985f732ee1b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.12-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.12-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.12\"\n + \ },\n \"sha256Digest\": \"d213eb778405b8128bc657ce61fcc19f2cde044ab9ab0950f28a94795ae9ccfd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.13-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.13-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.39.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.13\"\n + \ },\n \"sha256Digest\": \"3e928079bb81620ed133d3f3692e9b7ba0632bd75cdf0aea704eb640450b5d37\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.14-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.14-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.40.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.14\"\n + \ },\n \"sha256Digest\": \"9765d218d70f51e69725af92690e26c135937206483add4bf47854553f839e23\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.15-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.15-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.40.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.15\"\n + \ },\n \"sha256Digest\": \"e701b4da1f6ebcbf58d4b16f9e349f9edc8117ad922e2ae7ec1b2a31bc2828db\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.16-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.16-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.16\"\n + \ },\n \"sha256Digest\": \"39a75f9a88493949bd3e6f7bb4978d475720f7c97e056fcb6c201a8532fb6e76\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.2.17-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.2.17-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.2.17\"\n + \ },\n \"sha256Digest\": \"736e4d0fe7af899cc9825893c9994e25c467fb6750d8e7653fe9d33c0fc2394a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-0.3.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.50.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"0.3.0\"\n + \ },\n \"sha256Digest\": \"e5f4e9d4398cf0fcd656c0107386adbc8493e69e3158af6c5145ed23aaf77165\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"project_urls\": {\n \"Home\": + \"https://github.com/Azure/azure-cli-extensions/tree/main/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"0ef7b4bf9ffd0aa1ad5c50e15a343276636bcfe0296e52d2ee5f0b75ce70633d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"project_urls\": {\n \"Home\": + \"https://github.com/Azure/azure-cli-extensions/tree/main/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"1.0.1\"\n + \ },\n \"sha256Digest\": \"2db6c253d43862d06a4525073d67b61f1d34b7c8832162bd3b0bfffd24b9ada6\"\n + \ }\n ],\n \"vm-repair\": [\n {\n \"downloadUrl\": + \"https://azurecomputeaidrepair.blob.core.windows.net/prod/vm_repair-0.2.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.2.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"classifiers\": [\n + \ \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.2.6\"\n },\n + \ \"sha256Digest\": \"3556adeb1053262aa1aa0203b53423252afbd89b3e455255c2a2964a3be9a78e\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.2.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.2.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"classifiers\": [\n + \ \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.2.7\"\n },\n + \ \"sha256Digest\": \"4949871a99d5ef62ffdad72d35bfa75a483f1a714bf8d7ca84f134f86a5e9578\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.3.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.3.1\"\n },\n + \ \"sha256Digest\": \"4c893d48469b70772318c989ecac03e1ac494dc0c97652d1827a8ad55d8e8b51\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.3.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.3.2\"\n },\n + \ \"sha256Digest\": \"b7837a3129ff2614d27c2acbd254e97d83ac1540745225d2b156c897bb065125\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.3.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.3.3\"\n },\n + \ \"sha256Digest\": \"04ddc34a525af5b313f9dd1b5b446e5aa2a79d242451cf09f7670147c7aadd42\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.3.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.3.4\"\n },\n + \ \"sha256Digest\": \"b5964a8ed60193dc73e9109763af7cbb0162c029dbd81ed9ec5a7f20fa48ee7d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.3.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.3.5\"\n },\n + \ \"sha256Digest\": \"70112e8c4ce186f0c494e89680d751f8f4c6dc906c47cc44b8b5cdf0e19d2e50\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.3.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.3.6\"\n },\n + \ \"sha256Digest\": \"bd7d1259bb095ab238d8efca72c201570c5144816d7d4e98e73d1a82eb08a80a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.3.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.3.7\"\n },\n + \ \"sha256Digest\": \"021ae4b3b776b41e98fc91c35bc54e0ea7bcdfd32be3cfd23261e450535326bd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.3.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.3.8\"\n },\n + \ \"sha256Digest\": \"51499825455a4db3e4ede2a5abd31a28e8177f9bf66597c41dac0dc4851c41bb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.3.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.3.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.3.9\"\n },\n + \ \"sha256Digest\": \"d8a13d094c4900114a46778bb7c34f567401850193616d00dd06e02f415ceb81\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.4.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.4.0\"\n },\n + \ \"sha256Digest\": \"075c1df17bc63b1029cbcffee499143bef02ee1f6bd28ea1bf1f736352630532\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.4.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.4.1\"\n },\n + \ \"sha256Digest\": \"7dfc648e6dfa0392feb8491af3da54e229edd48bb75421cd554cd5be7e99e149\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.4.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.4.2\"\n },\n + \ \"sha256Digest\": \"cef2c111ea85fe22d51ee67ed4a88e46d9ac771ec04d5dc411460420d913cd4f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.4.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.4.3\"\n },\n + \ \"sha256Digest\": \"a9bf31ef4166e564a8fdcccb70edb217b59f0036a0849c5c57ec951f1693a08a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.4.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.4.4\"\n },\n + \ \"sha256Digest\": \"de9e7d77143dadc1606ebe079431ed974e483737cc001e89ff52335f60c938d1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.4.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.4.5\"\n },\n + \ \"sha256Digest\": \"6fb1d3a83fb4e06581f850d68070d22ed7d29739633a336efaeb8155baadd0df\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.4.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.4.6\"\n },\n + \ \"sha256Digest\": \"79b261c39c6f90889d0bfa41581566bb8b659b492ca1f9a37d700518b1408b85\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.4.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.4.7\"\n },\n + \ \"sha256Digest\": \"bed73a688d073c97207daaa907816db5781b429b6f3441d1b618b463feff2fcb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.4.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.4.8\"\n },\n + \ \"sha256Digest\": \"2ea0b50f1b484bc9c7ea72e9285163de489e726ef24cb2939620d3fa3c763c4a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.4.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.4.9\"\n },\n + \ \"sha256Digest\": \"4fe3fe3af8d52b86ad51af08b642fe93f4de076947df8127e9825762e7c46769\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.4.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.4.10-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.4.10\"\n },\n + \ \"sha256Digest\": \"67e4fd4a5daf78c9e7244cabda74aede9d2c9c92d11dab4c3e3d431017e656c7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.5.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.5.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.5.0\"\n },\n + \ \"sha256Digest\": \"dd5f2ec5d37aa6e745e9e706d4bd1d848f17f209807522831354ac0230c07f4c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.5.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.5.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.5.1\"\n },\n + \ \"sha256Digest\": \"91efbb3d2b46f01e6a4b04fd792f353dd702a8769319f59a0252fa35d7c409ab\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.5.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.5.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.5.2\"\n },\n + \ \"sha256Digest\": \"959f9bae59170c8c8785e47f046f3634472243b76cf576f049ca4cdaded0534e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.5.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.5.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.5.3\"\n },\n + \ \"sha256Digest\": \"6b71d6ddfb3a70057316ca760b0406417a330852ef184b2da239e417c4852dd4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.5.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.5.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.5.4\"\n },\n + \ \"sha256Digest\": \"49938853a802b1415f697200402e26a74679805fe08f0ba6b2e066bb4af69730\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.5.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.5.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.5.5\"\n },\n + \ \"sha256Digest\": \"feb439384e06c2a972f024a1d9eac7b766f03048fe1d142fe5043b3d583ca42f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.5.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.5.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.5.6\"\n },\n + \ \"sha256Digest\": \"ed46927769751d9bd3410979bef63dc2e7e3df5027e881e469c01c44eab67535\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.5.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.5.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.5.7\"\n },\n + \ \"sha256Digest\": \"bea352b15c0e1c5e0751c51e916f616b59e902256117f8cecd73c3f28928a89c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.5.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.5.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.5.8\"\n },\n + \ \"sha256Digest\": \"8f1d0dbc284a527af98d183df447533a295d5b7c81fc73e5f15c57182a03ce8f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-0.5.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-0.5.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"0.5.9\"\n },\n + \ \"sha256Digest\": \"4e41adbfd52e88a21ae112ff8076f58ded8100e319963c0b5bbf105e7607be25\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"7e6b9fb9952a56811d65de87b87b0403a6161edfa82284a43fa58f176e397b8b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"1.0.1\"\n },\n + \ \"sha256Digest\": \"0b8d2814ba628765785accf730a220e5805f700a6d1f07a653f1c0d8f8e8dc03\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"1.0.2\"\n },\n + \ \"sha256Digest\": \"54945c836b3a91aed5a92eaca872c47e364dd3e846ab02aca637412488ead5b4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"1.0.3\"\n },\n + \ \"sha256Digest\": \"3ea7181d6e5337cc9c85176467bafc413a2c1111a21ec06dd3e406f9cac82a93\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"1.0.4\"\n },\n + \ \"sha256Digest\": \"2adddc6d8cba9c6846a0c76f2612177a4d5b0813732f83534e4f8d0a48ddf9ab\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"1.0.5\"\n },\n + \ \"sha256Digest\": \"f2f7bc5698f89e0f6254464dc18d04d477dab4aab93296a46649018723855b26\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"1.0.6\"\n },\n + \ \"sha256Digest\": \"c3fe396c4c769095f68fe765505e40ff4671b192e1a6daee584749044a906ca7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"1.0.7\"\n },\n + \ \"sha256Digest\": \"989b15053fe19f1dbb37fd4a31720e2a1ca622ecadaaa4b5c568c44e44c20fa6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"vm-repair\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"opencensus (~=0.11.4)\",\n \"opencensus~=0.11.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Auto repair commands to fix VMs.\",\n \"version\": + \"1.0.8\"\n },\n \"sha256Digest\": \"165935c55f7da622fa17d3b1898d337c87838a24e390fbc5bf5c56ef9c0b4bfb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.9-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"vm-repair\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"opencensus (~=0.11.4)\",\n \"opencensus~=0.11.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Auto repair commands to fix VMs.\",\n \"version\": + \"1.0.9\"\n },\n \"sha256Digest\": \"72eef7e7dcfe46473f4e8451464f27557e72a79632eddb6f73c319eb5cef5cbc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.10-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"vm-repair\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"opencensus (~=0.11.4)\",\n \"opencensus~=0.11.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Auto repair commands to fix VMs.\",\n \"version\": + \"1.0.10\"\n },\n \"sha256Digest\": \"9ccd6c1ea95874c0928a161fa2d12ca25b3a7ae9bc5461faacd690debfdc0c89\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"vm-repair\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"opencensus (~=0.11.4)\",\n \"opencensus~=0.11.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Auto repair commands to fix VMs.\",\n \"version\": + \"1.1.0\"\n },\n \"sha256Digest\": \"c5d14b41d22049e8e7ddbc481c1dfeb08acbdc799fb86ab51541b3fe0b7d98e9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"vm-repair\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"opencensus (~=0.11.4)\",\n \"opencensus~=0.11.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Auto repair commands to fix VMs.\",\n \"version\": + \"1.1.1\"\n },\n \"sha256Digest\": \"b3444d8b20923c6ba284349a8819b6991ab71620f1e5c2d95185e4fc0a812db6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-2.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-2.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"vm-repair\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"opencensus (~=0.11.4)\",\n \"opencensus~=0.11.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Auto repair commands to fix VMs.\",\n \"version\": + \"2.0.0\"\n },\n \"sha256Digest\": \"9816b44a02b219dc6b4edad2543a7bf19d325d4332c0bffda34a2c29e51b85d5\"\n + \ }\n ],\n \"vmware\": [\n {\n \"downloadUrl\": + \"https://github.com/virtustream/az-vmware-cli/releases/download/0.7.2/vmware-0.7.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-0.7.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.66\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"0.7.2\"\n },\n \"sha256Digest\": + \"b84b027fe8d836f8969893480cef63b05b85db1a59f6ef11063e52be530fd9ff\"\n },\n + \ {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/vmware-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-1.0.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.0.66\",\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"1.0.0\"\n },\n \"sha256Digest\": + \"e1775b05e22e3afb70ad395bc3cff1cb7fdfc9a90836b61e13d4c54843577ddb\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-2.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-2.0.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"2.0.1\"\n },\n \"sha256Digest\": + \"9201be5570c050b7f048f25b70ee0a2229bf73ad048aea036b484166631bc8e5\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-3.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-3.0.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"3.0.0\"\n },\n \"sha256Digest\": + \"d68bcb114a2b46860eecf0debeb0d9c5db46c069399ef9e3f5292220a3cd37c2\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-3.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-3.1.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"3.1.0\"\n },\n \"sha256Digest\": + \"7b1ff134e840caa3b30a636fceb0e6a8022565e8a439245b8e1a111534e196f8\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-3.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-3.2.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"3.2.0\"\n },\n \"sha256Digest\": + \"4d557e5fbd5cc8cfc80a9f6085d5503007a0955160e264b816f9e6a6a7332580\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-4.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-4.0.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/az-vmware-cli\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"4.0.1\"\n },\n \"sha256Digest\": + \"93008844fbc5b157d17470738899e9f8cd0d09be2970cd045da10b8f8dac360a\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-4.0.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-4.0.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"4.0.2\"\n },\n \"sha256Digest\": + \"ce2fe71b5095fea0d3762e7c698abf1bb0d7b51cb54a4e841d07493c24ccbbdb\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-4.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-4.1.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"4.1.0\"\n },\n \"sha256Digest\": + \"05a8c52125bcd12250201a2ef0a1eb637e2b28f8b30aa4df014036f403584131\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-5.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-5.0.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"5.0.1\"\n },\n \"sha256Digest\": + \"1e971f5d4e3072017a624af9cf04919fbf78a755c7566c851c3b07cffdb46073\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-5.0.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-5.0.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"5.0.2\"\n },\n \"sha256Digest\": + \"3e8c591a7725b27ea3452d27ccbb1368e72fa689710ccffbca51c5adf1683ea1\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-5.0.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-5.0.3-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.11.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"5.0.3\"\n },\n \"sha256Digest\": + \"3bd864a243c7c72d41e7ac71af1d2c1389eb9974169548e6004f69ffae7ffc72\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-6.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-6.0.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"6.0.0\"\n },\n \"sha256Digest\": + \"92a73c84de0bad2cb19c1e81d2989a07ebcd67be0baa4635c99829ed563c6ca2\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-6.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-6.0.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"6.0.1\"\n },\n \"sha256Digest\": + \"2e07a4ddf1b244cfe8b63a29b7f82c3ec94294f10bacfe8fd604841d290020b5\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-7.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-7.0.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.54.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"7.0.0\"\n },\n \"sha256Digest\": + \"e0fadce4fc02996443a8e1673d19ebd24383c584ca89bd396ce963e85865ac0d\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-7.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-7.1.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.54.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"7.1.0\"\n },\n \"sha256Digest\": + \"53dc8b1d803cd784e668c4d4d630dec20390406af46266df0860f548a5c21f9d\"\n }\n + \ ],\n \"webapp\": [\n {\n \"downloadUrl\": + \"https://github.com/Nking92/azure-cli-extensions/raw/whl-files/dist/webapp-0.2.24-py2.py3-none-any.whl\",\n + \ \"filename\": \"webapp-0.2.24-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"sisirap@microsoft.com\",\n \"name\": + \"Sisira Panchagnula\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webapp\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"webapp\",\n \"summary\": \"Additional commands for Azure + AppService.\",\n \"version\": \"0.2.24\"\n },\n + \ \"sha256Digest\": \"797abb3d8b41547ed3c2bcc8e01e30cbb5d487262cd2f285e755419bd1c03bed\"\n + \ },\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/webapp-0.3.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"webapp-0.3.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"sisirap@microsoft.com\",\n \"name\": + \"Sisira Panchagnula\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webapp\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"webapp\",\n \"summary\": \"Additional commands for Azure + AppService.\",\n \"version\": \"0.3.1\"\n },\n + \ \"sha256Digest\": \"1cd5bb1a8ad02a5f7c8c72a01692637fed434b24ea359d21caf919ed5323941a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webapp-0.4.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"webapp-0.4.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.23.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"sisirap@microsoft.com\",\n \"name\": + \"Sisira Panchagnula\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webapp\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"webapp\",\n \"summary\": \"Additional commands for Azure + AppService.\",\n \"version\": \"0.4.0\"\n },\n + \ \"sha256Digest\": \"908b0df07cef652176a0f2bf0fdcf58b5d16fb4903ee3c06f73f0bb3913a5c0f\"\n + \ }\n ],\n \"webpubsub\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-0.1.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-0.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.22.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"webpubsub\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Webpubsub Extension\",\n \"version\": \"0.1.0\"\n + \ },\n \"sha256Digest\": \"e36b3e5d0585b1082884150b829de871dbe906fd2b5356689127e1153829245f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-0.2.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-0.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.22.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websockets (~=8.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Webpubsub Extension\",\n \"version\": + \"0.2.0\"\n },\n \"sha256Digest\": \"f29d5b7217b8f03fc05dde2cab282cbebec9d211dc8cd7c1ee9baa71b23ff6d5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-0.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.22.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websockets (~=8.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Webpubsub Extension\",\n \"version\": + \"0.2.1\"\n },\n \"sha256Digest\": \"8eac173dde02b0703d0dd3ef193e796e83e85732c98302aa0f53418a128bddec\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.22.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websockets (~=8.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Webpubsub Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"5e98577476bc8aba299baa00e664ff10185546c8f766260b961ef1c428b66a34\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.22.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websockets (~=8.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Webpubsub Extension\",\n \"version\": + \"1.1.0\"\n },\n \"sha256Digest\": \"802e829313a4993702d114a94eb8b119a376085d92b0a7860fd2c308e73112f6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.39.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/webpubsub\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websockets (~=10.4)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Webpubsub Extension\",\n \"version\": + \"1.2.0\"\n },\n \"sha256Digest\": \"faf83397b2215c7686ae7b3e93a576c3fd0aa9c70173ab72be66d2089b84b280\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.3.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.39.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/webpubsub\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websockets (~=10.4)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Webpubsub Extension\",\n \"version\": + \"1.3.0\"\n },\n \"sha256Digest\": \"ea713a11d4c2da55a1d60390bdb552f78bb80c1606214829eef099481eedb1da\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.4.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.4.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.39.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/webpubsub\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websockets (~=10.4)\",\n \"websockets~=10.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub + Extension\",\n \"version\": \"1.4.0\"\n },\n + \ \"sha256Digest\": \"50eab39bf43aa912ac947bd483092d6e1434cbba9ff3ce3ba05adf84a8a7d219\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.5.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.5.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.39.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/webpubsub\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websockets (~=10.4)\",\n \"websockets~=10.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub + Extension\",\n \"version\": \"1.5.0\"\n },\n + \ \"sha256Digest\": \"549fd4718c4663e4204be928dc3f86e5ef0f2003acf23fab03a4fdf5fdf4a3d8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.5.1-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.5.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/webpubsub\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websockets (~=10.4)\",\n \"websockets~=10.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub + Extension\",\n \"version\": \"1.5.1\"\n },\n + \ \"sha256Digest\": \"32bbeb0da13bb4c197c993a260afdaffc78c18d5f2bc390d588c5142baa785e9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.6.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.6.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/webpubsub\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websockets (~=10.4)\",\n \"websockets~=10.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub + Extension\",\n \"version\": \"1.6.0\"\n },\n + \ \"sha256Digest\": \"7c30049ded256664b8e5434230407331f6349def48e8aa57a759dc1cd9ab75e9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.7.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.7.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/webpubsub\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websockets (~=10.4)\",\n \"websockets~=10.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub + Extension\",\n \"version\": \"1.7.0\"\n },\n + \ \"sha256Digest\": \"d4a1df1b81531516cbb8460303e30ab7e465ff10da9bb91f5c90e5c223610643\"\n + \ }\n ],\n \"workloads\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/workloads-0.1.0a1-py3-none-any.whl\",\n + \ \"filename\": \"workloads-0.1.0a1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/workloads\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"workloads\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Workloads Extension.\",\n \"version\": \"0.1.0a1\"\n + \ },\n \"sha256Digest\": \"0e5ba95c3799d043fc2ba869ce0c5b2eea200357a8b0cbd2b2733bb91d4cc7a8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/workloads-1.1.0b1-py3-none-any.whl\",\n + \ \"filename\": \"workloads-1.1.0b1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/workloads\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"workloads\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Workloads Extension.\",\n \"version\": \"1.1.0b1\"\n + \ },\n \"sha256Digest\": \"262c41b08b831d689802634bb1a0fea0add38c3611f27b2036576d45232a1ff5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/workloads-1.1.0b2-py3-none-any.whl\",\n + \ \"filename\": \"workloads-1.1.0b2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/workloads\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"workloads\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Workloads Extension.\",\n \"version\": \"1.1.0b2\"\n + \ },\n \"sha256Digest\": \"716ec3db6d1d637da3d0255e83406aed3acd26b83405bbcadc4d30e1110beea3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/workloads-1.1.0b3-py3-none-any.whl\",\n + \ \"filename\": \"workloads-1.1.0b3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/workloads\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"workloads\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Workloads Extension.\",\n \"version\": \"1.1.0b3\"\n + \ },\n \"sha256Digest\": \"a7373b2d3766c43b3caeafc0eddbb492429750b62c78f767760b9b0b42363206\"\n + \ }\n ]\n },\n \"formatVersion\": \"1\"\n}" headers: content-length: - - '3080043' + - '4730543' content-md5: - - SR435Cx1FK62eWqwVc94XQ== + - ujCJSinjrJ+HmQZ85kl5MQ== content-type: - application/json date: - - Tue, 08 Aug 2023 02:20:50 GMT + - Mon, 04 Nov 2024 02:30:42 GMT etag: - - '0x8DB96ED272D9551' + - '0x8DCFA4EC6421D96' last-modified: - - Mon, 07 Aug 2023 02:22:31 GMT + - Fri, 01 Nov 2024 08:25:42 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-type: @@ -41978,31 +55619,35 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_with_firewall_policy000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001","name":"cli_test_azure_firewall_with_firewall_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_azure_firewall_with_firewall_policy","date":"2023-08-08T02:20:45Z","module":"azure-firewall"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001","name":"cli_test_azure_firewall_with_firewall_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_azure_firewall_with_firewall_policy","date":"2024-11-04T02:30:33Z","module":"azure-firewall","DateCreated":"2024-11-04T02:30:42Z","Creator":"v-ruih@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '455' + - '525' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:20:56 GMT + - Mon, 04 Nov 2024 02:30:48 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: FA855479736C42D4A1E963FB0A12D4B7 Ref B: MAA201060514037 Ref C: 2024-11-04T02:30:48Z' status: code: 200 message: OK @@ -42024,46 +55669,43 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-network/22.2.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2022-07-01 response: body: - string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\ - ,\r\n \"etag\": \"W/\\\"8e6de976-f975-434c-92b0-b09a84c3f389\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus2\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ - \ \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\"\ - : true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\"\ - : \"Standard\"\r\n }\r\n}" + string: '{"name":"clitestvwan","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualWans/clitestvwan","etag":"W/\"4325475b-3852-4c17-a8d7-8cbd11314b2a\"","type":"Microsoft.Network/virtualWans","location":"westus2","properties":{"provisioningState":"Updating","disableVpnEncryption":false,"allowBranchToBranchTraffic":true,"office365LocalBreakoutCategory":"None","type":"Standard"}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e3ae43bd-7e42-48ec-a771-59d096904dd2?api-version=2022-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/06286427-0d49-4182-ba1b-20c7c205a6fd?api-version=2022-07-01&t=638662842524851263&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=csaT3ah9hn_afgUhnJ1052TQODoV_6iSjjP3WQZlieshG9ofh2tua7vGQc4IcxEE3BReV7n6K2nPt3hTSOHsKZPene_xBL8T3iJT6gqjGE3PoJlW7tOzhcUOeh5LsNik2QjBQb_svyTPQErEs43dY19nrl--JDB3T9v7D2r4T6ZTKxCnVWsyyEAiAcP7CCE5fsMZZJ3scOUG3qSihJFAGQcuuBOLFwMYzjc08JsiVH_5_SxT-VE4yTAPLuFyUBhgdCN-Pswll2Cd-jRJUu878FZs1pHVNe1OfCqoGucW9Ua2OjdzFUjnEmQj58p1ZEUgmYkEpMw-_8yfkSPPYl89jA&h=vj0QQPp4Hqapq_H_kHYvIg6RAf5Bk9LBRz9-U0yhJbQ cache-control: - no-cache content-length: - - '549' + - '478' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:21:03 GMT + - Mon, 04 Nov 2024 02:30:52 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 101076bb-2cc0-462d-9a0b-a587dced3ed2 + - e02cc332-d76b-4107-b759-1f97aa4dd07b + x-ms-ratelimit-remaining-subscription-global-writes: + - '2998' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '198' + x-msedge-ref: + - 'Ref A: BA533D1D22F343078E6E657B89C41266 Ref B: MAA201060515009 Ref C: 2024-11-04T02:30:49Z' status: code: 201 message: Created @@ -42081,38 +55723,37 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-network/22.2.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e3ae43bd-7e42-48ec-a771-59d096904dd2?api-version=2022-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/06286427-0d49-4182-ba1b-20c7c205a6fd?api-version=2022-07-01&t=638662842524851263&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=csaT3ah9hn_afgUhnJ1052TQODoV_6iSjjP3WQZlieshG9ofh2tua7vGQc4IcxEE3BReV7n6K2nPt3hTSOHsKZPene_xBL8T3iJT6gqjGE3PoJlW7tOzhcUOeh5LsNik2QjBQb_svyTPQErEs43dY19nrl--JDB3T9v7D2r4T6ZTKxCnVWsyyEAiAcP7CCE5fsMZZJ3scOUG3qSihJFAGQcuuBOLFwMYzjc08JsiVH_5_SxT-VE4yTAPLuFyUBhgdCN-Pswll2Cd-jRJUu878FZs1pHVNe1OfCqoGucW9Ua2OjdzFUjnEmQj58p1ZEUgmYkEpMw-_8yfkSPPYl89jA&h=vj0QQPp4Hqapq_H_kHYvIg6RAf5Bk9LBRz9-U0yhJbQ response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:21:03 GMT + - Mon, 04 Nov 2024 02:30:52 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8d4042a0-0c67-4615-9b69-ede5aa7b660c + - 98f67a10-8463-4e73-8783-b3e9c4f57694 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3746' + x-msedge-ref: + - 'Ref A: D8A268FE8CAD4242988A6563BCE3A9B9 Ref B: MAA201060515009 Ref C: 2024-11-04T02:30:52Z' status: code: 200 message: OK @@ -42130,38 +55771,37 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-network/22.2.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e3ae43bd-7e42-48ec-a771-59d096904dd2?api-version=2022-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/06286427-0d49-4182-ba1b-20c7c205a6fd?api-version=2022-07-01&t=638662842524851263&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=csaT3ah9hn_afgUhnJ1052TQODoV_6iSjjP3WQZlieshG9ofh2tua7vGQc4IcxEE3BReV7n6K2nPt3hTSOHsKZPene_xBL8T3iJT6gqjGE3PoJlW7tOzhcUOeh5LsNik2QjBQb_svyTPQErEs43dY19nrl--JDB3T9v7D2r4T6ZTKxCnVWsyyEAiAcP7CCE5fsMZZJ3scOUG3qSihJFAGQcuuBOLFwMYzjc08JsiVH_5_SxT-VE4yTAPLuFyUBhgdCN-Pswll2Cd-jRJUu878FZs1pHVNe1OfCqoGucW9Ua2OjdzFUjnEmQj58p1ZEUgmYkEpMw-_8yfkSPPYl89jA&h=vj0QQPp4Hqapq_H_kHYvIg6RAf5Bk9LBRz9-U0yhJbQ response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:21:13 GMT + - Mon, 04 Nov 2024 02:31:03 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0cf11a48-b663-4f2b-a1ad-05acb8a308db + - e67920a1-38fe-49e0-8336-47825736c296 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 788DB7A4198043B683AA995E680E1936 Ref B: MAA201060515009 Ref C: 2024-11-04T02:31:03Z' status: code: 200 message: OK @@ -42179,46 +55819,39 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.50.0 azsdk-python-azure-mgmt-network/22.2.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2022-07-01 response: body: - string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualWans/clitestvwan\"\ - ,\r\n \"etag\": \"W/\\\"eb5300cb-f8d7-47fa-ba96-4037d1f6f968\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus2\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\"\ - : true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\"\ - : \"Standard\"\r\n }\r\n}" + string: '{"name":"clitestvwan","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualWans/clitestvwan","etag":"W/\"ce57b122-342a-4ed3-8619-87699f3b4923\"","type":"Microsoft.Network/virtualWans","location":"westus2","properties":{"provisioningState":"Succeeded","disableVpnEncryption":false,"allowBranchToBranchTraffic":true,"office365LocalBreakoutCategory":"None","type":"Standard"}}' headers: cache-control: - no-cache content-length: - - '550' + - '479' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:21:14 GMT + - Mon, 04 Nov 2024 02:31:04 GMT etag: - - W/"eb5300cb-f8d7-47fa-ba96-4037d1f6f968" + - W/"ce57b122-342a-4ed3-8619-87699f3b4923" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8426b5b8-759c-4792-8dec-290475dbadbd + - d0adf9d6-45c9-46e6-ad21-3ff9a13d9216 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D7385A94C38047CB90ECEE7249E83DAC Ref B: MAA201060515009 Ref C: 2024-11-04T02:31:03Z' status: code: 200 message: OK @@ -42240,41 +55873,45 @@ interactions: ParameterSetName: - -g -n -l 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy?api-version=2022-01-01 response: body: - string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Standard\"\ - \r\n },\r\n \"childPolicies\": [],\r\n \"ruleCollectionGroups\":\ - \ [],\r\n \"firewalls\": [],\r\n \"threatIntelMode\": \"Alert\",\r\n\ - \ \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy\"\ - ,\r\n \"name\": \"myclipolicy\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\"\ - ,\r\n \"etag\": \"0aed02ca-28d4-4181-b2ae-890db4d548bb\",\r\n \"location\"\ - : \"westus2\"\r\n}" + string: "{\r\n \"properties\": {\r\n \"size\": \"0.001243591 MB\",\r\n \"sku\": + {\r\n \"tier\": \"Standard\"\r\n },\r\n \"childPolicies\": [],\r\n + \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"threatIntelMode\": + \"Alert\",\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy\",\r\n + \ \"name\": \"myclipolicy\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n + \ \"etag\": \"5fc9be29-5595-46e1-b8a5-a74eb2795e99\",\r\n \"location\": \"westus2\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/d8024acd-1900-4daa-8da2-0d561f2554e8?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/fa76896b-4ef3-457f-8af4-3431d59ba5c1?api-version=2022-01-01&t=638662842695330356&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=dGrvz7y2yj2rAf2tpTl3LRpNm_N7nL9Nfk4oD-z1yTjYndljOpUNIvovWh_h4Ir-0j_eVc2y96uKBQ7VvegSrrmB73RuzBkzvLl5lz4l04O2TJLZwQfV_pJHkBSfLKVm4XetiFAFyamHxJDbKuFn3-9TiTnkjpiJ0zBQ8yM17xSs6BZLmOSJKi5JjOU03eVMh-R-EBGVYjg4-Q6jUOTYKS944JMDuJPDLxM7biaZkuDqbaBe1RXHoaGkaKtwuqn3icnlyofU_apCk4wUfidtc3xcjsdyg-kRvaFCvVfDTkk9zeI7z4_VQfnqaHpeKFXiF-vhBuF8z3JieSiCB3TkgQ&h=jvxXuBWWE_M3hO0SuxqXm423oTgs5yP0oa0QD-MT1wM cache-control: - no-cache content-length: - - '566' + - '597' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:21:21 GMT + - Mon, 04 Nov 2024 02:31:09 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '199' + x-msedge-ref: + - 'Ref A: BEF83AE015494EFBB13950F5ED42AB04 Ref B: MAA201060514025 Ref C: 2024-11-04T02:31:05Z' status: code: 201 message: Created @@ -42292,9 +55929,9 @@ interactions: ParameterSetName: - -g -n -l 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/d8024acd-1900-4daa-8da2-0d561f2554e8?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/fa76896b-4ef3-457f-8af4-3431d59ba5c1?api-version=2022-01-01&t=638662842695330356&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=dGrvz7y2yj2rAf2tpTl3LRpNm_N7nL9Nfk4oD-z1yTjYndljOpUNIvovWh_h4Ir-0j_eVc2y96uKBQ7VvegSrrmB73RuzBkzvLl5lz4l04O2TJLZwQfV_pJHkBSfLKVm4XetiFAFyamHxJDbKuFn3-9TiTnkjpiJ0zBQ8yM17xSs6BZLmOSJKi5JjOU03eVMh-R-EBGVYjg4-Q6jUOTYKS944JMDuJPDLxM7biaZkuDqbaBe1RXHoaGkaKtwuqn3icnlyofU_apCk4wUfidtc3xcjsdyg-kRvaFCvVfDTkk9zeI7z4_VQfnqaHpeKFXiF-vhBuF8z3JieSiCB3TkgQ&h=jvxXuBWWE_M3hO0SuxqXm423oTgs5yP0oa0QD-MT1wM response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -42306,21 +55943,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:21:21 GMT + - Mon, 04 Nov 2024 02:31:10 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 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-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 1E8DBDB8F8E743E28FA8F81A63FAADC3 Ref B: MAA201060514025 Ref C: 2024-11-04T02:31:09Z' status: code: 200 message: OK @@ -42338,43 +55975,43 @@ interactions: ParameterSetName: - -g -n -l 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy?api-version=2022-01-01 response: body: - string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Standard\"\ - \r\n },\r\n \"childPolicies\": [],\r\n \"ruleCollectionGroups\":\ - \ [],\r\n \"firewalls\": [],\r\n \"threatIntelMode\": \"Alert\",\r\n\ - \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy\"\ - ,\r\n \"name\": \"myclipolicy\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\"\ - ,\r\n \"etag\": \"0aed02ca-28d4-4181-b2ae-890db4d548bb\",\r\n \"location\"\ - : \"westus2\"\r\n}" + string: "{\r\n \"properties\": {\r\n \"size\": \"0.001243591 MB\",\r\n \"sku\": + {\r\n \"tier\": \"Standard\"\r\n },\r\n \"childPolicies\": [],\r\n + \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"threatIntelMode\": + \"Alert\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy\",\r\n + \ \"name\": \"myclipolicy\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n + \ \"etag\": \"5fc9be29-5595-46e1-b8a5-a74eb2795e99\",\r\n \"location\": \"westus2\"\r\n}" headers: cache-control: - no-cache content-length: - - '567' + - '598' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:21:21 GMT + - Mon, 04 Nov 2024 02:31:11 GMT etag: - - '"0aed02ca-28d4-4181-b2ae-890db4d548bb"' + - '"5fc9be29-5595-46e1-b8a5-a74eb2795e99"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 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-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 20A05804E278490BA024068231C8AD2E Ref B: MAA201060514025 Ref C: 2024-11-04T02:31:10Z' status: code: 200 message: OK @@ -42398,49 +56035,43 @@ interactions: ParameterSetName: - -g -n -l --firewall-policy 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af2?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"af2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af2\"\ - ,\r\n \"etag\": \"W/\\\"42eb7487-627d-46f5-817c-20db40290d6c\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus2\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ - \ \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\ - \r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\"\ - : {},\r\n \"ipConfigurations\": [],\r\n \"networkRuleCollections\":\ - \ [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\"\ - : [],\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy\"\ - \r\n }\r\n }\r\n}" + string: '{"name":"af2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af2","etag":"W/\"e675ae7a-62d5-41df-bdd7-cc0f600673ea\"","type":"Microsoft.Network/azureFirewalls","location":"westus2","properties":{"provisioningState":"Updating","sku":{"name":"AZFW_VNet","tier":"Standard"},"threatIntelMode":"Alert","additionalProperties":{},"ipConfigurations":[],"networkRuleCollections":[],"applicationRuleCollections":[],"natRuleCollections":[],"firewallPolicy":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy"}}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/baeb943e-c850-4ae6-afbb-15f3ae643820?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5e360932-15c8-4950-81ff-15c72aa8d7d7?api-version=2022-01-01&t=638662842798340998&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=0L8z5WxiAGT44yidveg70MA-htq9_lcNZL8NtPopdsl8Y6TaYOH2V0IOEG9yM--CYrw6JV5f9e5wHH9jaGUj-3kNnZzGMTIpNm-Nz8-N7zG9tjvWGNcFd1Ww_qSAlGD5zzzcDWnbZ5b4B_Y0xuFAwN-bQ_wtP1ztefjtJ_6p9YM1j_W6NKG6ArMskMNc9EGC9T8aPtAK3eE-z0-p8BNcDVs8RMAT1TcrULzq6ZJPU9p9tpCR3dRo8e_yEJjDsrsxP1oEnBYmL9oSehGA1RC-KFNbce6XL4zAp_skhsUU7oodzcT63Kqc8PHhCU5C--e2fmAzNU9QtgME0hWy6f9Ggw&h=K9upBNCoN0VvphDb2NuGwOpITGcbQpA03stDRsxBppw cache-control: - no-cache content-length: - - '889' + - '751' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:21:29 GMT + - Mon, 04 Nov 2024 02:31:18 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 406e8678-53b6-42a8-8585-91460f3e7fe2 + - b0eca7aa-108a-4f6d-993c-14e29947195a + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '199' + x-msedge-ref: + - 'Ref A: E7BB9753DF5844AB99708600F44549BF Ref B: MAA201060515017 Ref C: 2024-11-04T02:31:12Z' status: code: 201 message: Created @@ -42458,38 +56089,37 @@ interactions: ParameterSetName: - -g -n -l --firewall-policy 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/baeb943e-c850-4ae6-afbb-15f3ae643820?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5e360932-15c8-4950-81ff-15c72aa8d7d7?api-version=2022-01-01&t=638662842798340998&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=0L8z5WxiAGT44yidveg70MA-htq9_lcNZL8NtPopdsl8Y6TaYOH2V0IOEG9yM--CYrw6JV5f9e5wHH9jaGUj-3kNnZzGMTIpNm-Nz8-N7zG9tjvWGNcFd1Ww_qSAlGD5zzzcDWnbZ5b4B_Y0xuFAwN-bQ_wtP1ztefjtJ_6p9YM1j_W6NKG6ArMskMNc9EGC9T8aPtAK3eE-z0-p8BNcDVs8RMAT1TcrULzq6ZJPU9p9tpCR3dRo8e_yEJjDsrsxP1oEnBYmL9oSehGA1RC-KFNbce6XL4zAp_skhsUU7oodzcT63Kqc8PHhCU5C--e2fmAzNU9QtgME0hWy6f9Ggw&h=K9upBNCoN0VvphDb2NuGwOpITGcbQpA03stDRsxBppw response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:21:29 GMT + - Mon, 04 Nov 2024 02:31:19 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a41e30e0-a7a6-4979-88b1-d00ef3173deb + - dc5c5ad1-442e-41a0-9bc8-3b1fb7064103 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D0065135C51D4DC5ACFDE249FA71BED1 Ref B: MAA201060515017 Ref C: 2024-11-04T02:31:20Z' status: code: 200 message: OK @@ -42507,49 +56137,39 @@ interactions: ParameterSetName: - -g -n -l --firewall-policy 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af2?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"af2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af2\"\ - ,\r\n \"etag\": \"W/\\\"c28543a7-22ac-413c-bee8-174ad1c9f92a\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus2\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\ - \r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\"\ - : {},\r\n \"ipConfigurations\": [],\r\n \"networkRuleCollections\":\ - \ [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\"\ - : [],\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy\"\ - \r\n }\r\n }\r\n}" + string: '{"name":"af2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af2","etag":"W/\"a656637a-7edc-4f9a-a64a-d2fa6faafd55\"","type":"Microsoft.Network/azureFirewalls","location":"westus2","properties":{"provisioningState":"Succeeded","sku":{"name":"AZFW_VNet","tier":"Standard"},"threatIntelMode":"Alert","additionalProperties":{},"ipConfigurations":[],"networkRuleCollections":[],"applicationRuleCollections":[],"natRuleCollections":[],"firewallPolicy":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy"}}}' headers: cache-control: - no-cache content-length: - - '890' + - '752' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:21:30 GMT + - Mon, 04 Nov 2024 02:31:21 GMT etag: - - W/"c28543a7-22ac-413c-bee8-174ad1c9f92a" + - W/"a656637a-7edc-4f9a-a64a-d2fa6faafd55" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 68e0044d-ad24-433d-a294-ebd8f519864f + - 3b06be24-e560-42aa-8a9c-3a58e62aeb45 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 64B32E0F1777428CA5A673A0525DC55E Ref B: MAA201060515017 Ref C: 2024-11-04T02:31:20Z' status: code: 200 message: OK @@ -42572,49 +56192,43 @@ interactions: ParameterSetName: - -g -n -l --sku 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2022-11-01 response: body: - string: "{\r\n \"name\": \"pubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/publicIPAddresses/pubip\"\ - ,\r\n \"etag\": \"W/\\\"1d8b53eb-baeb-49b8-afc7-da6a92616171\\\"\",\r\n \ - \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Updating\",\r\n \"resourceGuid\": \"b7b93c94-1001-4106-ba01-19a82163598e\"\ - ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\ - : \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\ - \n \"ddosSettings\": {\r\n \"protectionMode\": \"VirtualNetworkInherited\"\ - \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\ - \n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ - \r\n }\r\n}" + string: '{"name":"pubip","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/publicIPAddresses/pubip","etag":"W/\"a3775c23-b1ee-46e4-83e2-7fffd387629c\"","location":"westus2","properties":{"provisioningState":"Updating","resourceGuid":"aa9130a4-2f54-4b22-b1ad-7048ad3d261e","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8f6b4b1a-ff13-47be-b436-a35ff2df6781?api-version=2022-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/54d87983-fae9-42c0-8cb5-65b0353c8432?api-version=2022-11-01&t=638662842876053826&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=ePS3sg6GknLaoR6SwOsRxzTXPiTz6_9bFuKhxulupaj88qMuBRGyM9y-wcBvbF-ncUVCA-A4unOIWiUitLswPLBEkME1M5-6KPglHriMZBXQSOBsAiMnzZSAbyv481Ze6KLm3_vk4PwLFwfrBg_XwwchrTp3YOtnhbvIaX0orDWOyOg5SfYrpyTwR4QvdDPlNxOvt2DENTuIokFWIzvHXUOJ5xjVWiv6meVOVlnK9o4uo_-4qvBDXCNGXmhtvYNMVj3oLx3P7x0uZcX2ACHkB4cbEU4BnP31UIDQoZh4cwJdY2tmx-s5mPif_FruelO6iypjP2JZFR9kZhYyWqqimQ&h=TnIIj7SfiZ2TB26x6f8trUzC2SXPzlAIVqvSyypc_bU cache-control: - no-cache content-length: - - '743' + - '620' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:21:36 GMT + - Mon, 04 Nov 2024 02:31:26 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - df3fb05c-7528-49b3-8c9b-6b61949696a4 + - bf7758cf-41bf-480e-9b84-efa14a0dafd2 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '199' + x-msedge-ref: + - 'Ref A: 21603E7A2D7045788BEFC3A238EEB1F8 Ref B: MAA201060514047 Ref C: 2024-11-04T02:31:23Z' status: code: 201 message: Created @@ -42632,38 +56246,37 @@ interactions: ParameterSetName: - -g -n -l --sku 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8f6b4b1a-ff13-47be-b436-a35ff2df6781?api-version=2022-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/54d87983-fae9-42c0-8cb5-65b0353c8432?api-version=2022-11-01&t=638662842876053826&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=ePS3sg6GknLaoR6SwOsRxzTXPiTz6_9bFuKhxulupaj88qMuBRGyM9y-wcBvbF-ncUVCA-A4unOIWiUitLswPLBEkME1M5-6KPglHriMZBXQSOBsAiMnzZSAbyv481Ze6KLm3_vk4PwLFwfrBg_XwwchrTp3YOtnhbvIaX0orDWOyOg5SfYrpyTwR4QvdDPlNxOvt2DENTuIokFWIzvHXUOJ5xjVWiv6meVOVlnK9o4uo_-4qvBDXCNGXmhtvYNMVj3oLx3P7x0uZcX2ACHkB4cbEU4BnP31UIDQoZh4cwJdY2tmx-s5mPif_FruelO6iypjP2JZFR9kZhYyWqqimQ&h=TnIIj7SfiZ2TB26x6f8trUzC2SXPzlAIVqvSyypc_bU response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:21:36 GMT + - Mon, 04 Nov 2024 02:31:27 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 962a31e9-6252-4d3d-87b7-e50443c725b0 + - 0d69517b-984c-4e57-a100-db8dbd54315c + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 075AA51923274EA4B1FE9F13162BA8C4 Ref B: MAA201060514047 Ref C: 2024-11-04T02:31:27Z' status: code: 200 message: OK @@ -42681,49 +56294,39 @@ interactions: ParameterSetName: - -g -n -l --sku 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2022-11-01 response: body: - string: "{\r\n \"name\": \"pubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/publicIPAddresses/pubip\"\ - ,\r\n \"etag\": \"W/\\\"eb4816b8-6433-4126-a05d-deb376ed81aa\\\"\",\r\n \ - \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"b7b93c94-1001-4106-ba01-19a82163598e\"\ - ,\r\n \"ipAddress\": \"20.3.108.210\",\r\n \"publicIPAddressVersion\"\ - : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\ - : 4,\r\n \"ipTags\": [],\r\n \"ddosSettings\": {\r\n \"protectionMode\"\ - : \"VirtualNetworkInherited\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\ - ,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ - \r\n }\r\n}" + string: '{"name":"pubip","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/publicIPAddresses/pubip","etag":"W/\"bc161e71-8e0e-4eaf-8103-d973bb3d629c\"","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"aa9130a4-2f54-4b22-b1ad-7048ad3d261e","ipAddress":"52.183.64.198","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '778' + - '649' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:21:37 GMT + - Mon, 04 Nov 2024 02:31:28 GMT etag: - - W/"eb4816b8-6433-4126-a05d-deb376ed81aa" + - W/"bc161e71-8e0e-4eaf-8103-d973bb3d629c" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cb592f80-f71f-4e18-90de-f34014fcd802 + - 0e4daf64-2fcf-4318-9ca6-1d408fd9d300 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 0F474921F4614FC8BE08131BF722531F Ref B: MAA201060514047 Ref C: 2024-11-04T02:31:28Z' status: code: 200 message: OK @@ -42748,55 +56351,43 @@ interactions: ParameterSetName: - -g -n --subnet-name -l --address-prefixes --subnet-prefixes 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2024-03-01 response: body: - string: "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet\"\ - ,\r\n \"etag\": \"W/\\\"af0bc02a-8d25-4296-b33d-19f7f1138887\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ - \ \"resourceGuid\": \"82af1436-1822-4195-9813-8d5b0f83bab7\",\r\n \"\ - addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ - \r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\"\ - : \"AzureFirewallSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\"\ - ,\r\n \"etag\": \"W/\\\"af0bc02a-8d25-4296-b33d-19f7f1138887\\\"\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ - ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ - : [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\ - \n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ - : false\r\n }\r\n}" + string: '{"name":"myvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet","etag":"W/\"6e2bc39f-a50e-499d-9840-d9d44e9e8e6f\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Updating","resourceGuid":"19b296c9-d7e0-4e4e-b50d-9eab71bfc806","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"AzureFirewallSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet","etag":"W/\"6e2bc39f-a50e-499d-9840-d9d44e9e8e6f\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5d15fba-0d88-4cd8-a450-204d95b34acd?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/77fdf238-c190-471d-8012-d58192af3560?api-version=2024-03-01&t=638662842932939285&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=2x4TLiflICc52BgbZTBV6g6tiToDGEGfx9rgIJbf29wnXzJzLlYLtTmZFkwDsOzu9YZslFyRH0-4qtRRCmZ94DK9Cm31LVq7LXxw72Y0kGVJ6c0eSQ3N900WzIDGo89LD7fi0uKmpqvSeXTSz03R2S5hpY7Ko6hhZFWhKh7SGQvOB_t_LHxZ1YFGxdLgqd2AfvAwFJgNst_sWKKIHoVFv6yDlpdLZHucemJe__oc4F9s9MlSSkOIDjcLyBQCEY1uNlw5nmdzuFt20BEwAyS2ej1V0WgxpI77GRDHLy680PxdUK-TevSE7wvOc7jfdpcZCwH3VZzJ2jKmo1X-VHxMLA&h=Xd9tov6eYBNXyAYjCWH02jU-NmGCDZICM59Yr_unh0o cache-control: - no-cache content-length: - - '1313' + - '1091' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:21:42 GMT + - Mon, 04 Nov 2024 02:31:32 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d9fe529a-9f85-4155-b50c-f078c80efdd0 + - efa1e132-599e-4dbf-adc3-7c1a09559be1 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '199' + x-msedge-ref: + - 'Ref A: 39E592722F4848D09414118D63AA974D Ref B: MAA201060516045 Ref C: 2024-11-04T02:31:30Z' status: code: 201 message: Created @@ -42814,38 +56405,37 @@ interactions: ParameterSetName: - -g -n --subnet-name -l --address-prefixes --subnet-prefixes 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5d15fba-0d88-4cd8-a450-204d95b34acd?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/77fdf238-c190-471d-8012-d58192af3560?api-version=2024-03-01&t=638662842932939285&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=2x4TLiflICc52BgbZTBV6g6tiToDGEGfx9rgIJbf29wnXzJzLlYLtTmZFkwDsOzu9YZslFyRH0-4qtRRCmZ94DK9Cm31LVq7LXxw72Y0kGVJ6c0eSQ3N900WzIDGo89LD7fi0uKmpqvSeXTSz03R2S5hpY7Ko6hhZFWhKh7SGQvOB_t_LHxZ1YFGxdLgqd2AfvAwFJgNst_sWKKIHoVFv6yDlpdLZHucemJe__oc4F9s9MlSSkOIDjcLyBQCEY1uNlw5nmdzuFt20BEwAyS2ej1V0WgxpI77GRDHLy680PxdUK-TevSE7wvOc7jfdpcZCwH3VZzJ2jKmo1X-VHxMLA&h=Xd9tov6eYBNXyAYjCWH02jU-NmGCDZICM59Yr_unh0o response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:21:43 GMT + - Mon, 04 Nov 2024 02:31:32 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8d82ad28-9f1c-44cd-886f-6ffb0b2e9b8c + - fabe4043-9867-4796-880a-16b163727cc8 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 3A37C3CD9309437B8FE73D778982F5A2 Ref B: MAA201060516045 Ref C: 2024-11-04T02:31:33Z' status: code: 200 message: OK @@ -42863,38 +56453,37 @@ interactions: ParameterSetName: - -g -n --subnet-name -l --address-prefixes --subnet-prefixes 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5d15fba-0d88-4cd8-a450-204d95b34acd?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/77fdf238-c190-471d-8012-d58192af3560?api-version=2024-03-01&t=638662842932939285&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=2x4TLiflICc52BgbZTBV6g6tiToDGEGfx9rgIJbf29wnXzJzLlYLtTmZFkwDsOzu9YZslFyRH0-4qtRRCmZ94DK9Cm31LVq7LXxw72Y0kGVJ6c0eSQ3N900WzIDGo89LD7fi0uKmpqvSeXTSz03R2S5hpY7Ko6hhZFWhKh7SGQvOB_t_LHxZ1YFGxdLgqd2AfvAwFJgNst_sWKKIHoVFv6yDlpdLZHucemJe__oc4F9s9MlSSkOIDjcLyBQCEY1uNlw5nmdzuFt20BEwAyS2ej1V0WgxpI77GRDHLy680PxdUK-TevSE7wvOc7jfdpcZCwH3VZzJ2jKmo1X-VHxMLA&h=Xd9tov6eYBNXyAYjCWH02jU-NmGCDZICM59Yr_unh0o response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:21:53 GMT + - Mon, 04 Nov 2024 02:31:43 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3a7ae1af-6218-4e0e-87ba-e05b69d56750 + - a998c12f-4413-4a01-9146-dd6d25ed8f88 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 7B763F08F69D495DBAA83C35382ABA33 Ref B: MAA201060516045 Ref C: 2024-11-04T02:31:43Z' status: code: 200 message: OK @@ -42912,55 +56501,39 @@ interactions: ParameterSetName: - -g -n --subnet-name -l --address-prefixes --subnet-prefixes 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2024-03-01 response: body: - string: "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet\"\ - ,\r\n \"etag\": \"W/\\\"b9c8c4e1-75c8-459b-a9e0-3c2a87939b22\\\"\",\r\n \ - \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"resourceGuid\": \"82af1436-1822-4195-9813-8d5b0f83bab7\",\r\n \"\ - addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ - \r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\"\ - : \"AzureFirewallSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\"\ - ,\r\n \"etag\": \"W/\\\"b9c8c4e1-75c8-459b-a9e0-3c2a87939b22\\\"\"\ - ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\"\ - : [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\ - \n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ - : false\r\n }\r\n}" + string: '{"name":"myvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet","etag":"W/\"c106cc5b-b9c3-41b0-a557-c5662a419b7a\"","type":"Microsoft.Network/virtualNetworks","location":"westus2","properties":{"provisioningState":"Succeeded","resourceGuid":"19b296c9-d7e0-4e4e-b50d-9eab71bfc806","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"AzureFirewallSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet","etag":"W/\"c106cc5b-b9c3-41b0-a557-c5662a419b7a\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: cache-control: - no-cache content-length: - - '1315' + - '1093' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:21:53 GMT + - Mon, 04 Nov 2024 02:31:44 GMT etag: - - W/"b9c8c4e1-75c8-459b-a9e0-3c2a87939b22" + - W/"c106cc5b-b9c3-41b0-a557-c5662a419b7a" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8a45b3fc-231b-40f6-9642-2576f7e767e2 + - 6bc65fc6-6ca8-4af5-9f57-087b1fe96473 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 8C195434B10A4E2B924159665DE2276C Ref B: MAA201060516045 Ref C: 2024-11-04T02:31:44Z' status: code: 200 message: OK @@ -42982,41 +56555,45 @@ interactions: ParameterSetName: - -g -n -l --sku 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2?api-version=2022-01-01 response: body: - string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Premium\"\ - \r\n },\r\n \"childPolicies\": [],\r\n \"ruleCollectionGroups\":\ - \ [],\r\n \"firewalls\": [],\r\n \"threatIntelMode\": \"Alert\",\r\n\ - \ \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\"\ - ,\r\n \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\"\ - ,\r\n \"etag\": \"a0e87e86-380f-4822-a9e0-6c8aec6335c7\",\r\n \"location\"\ - : \"westus2\"\r\n}" + string: "{\r\n \"properties\": {\r\n \"size\": \"0.001246452 MB\",\r\n \"sku\": + {\r\n \"tier\": \"Premium\"\r\n },\r\n \"childPolicies\": [],\r\n + \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"threatIntelMode\": + \"Alert\",\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\",\r\n + \ \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n + \ \"etag\": \"2b11df20-b3b6-4b2e-92fc-b31e31e5aa03\",\r\n \"location\": \"westus2\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/e32e8c27-a7a2-4992-bdb7-92af721a5d2d?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/662ec1ac-7ac9-4a5a-838d-683cb2395ab4?api-version=2022-01-01&t=638662843098288178&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=gfvm9VWfMOL8yLPgB2TdUxiuxK4lxZB-K9jNZiWKAf-pvkQ1tZMpMfaFwq7QZrn1NfZrCC78Dz9eRz1wOpfQdKvepSFaZ47ICMwNTIgDErrDWTtcrsUbErYZaIs7F3UyijePowhePH6A-JeJjcLo9qefF6StK-NSAxlRf62GBZxvlzHr6ShZiKMgnsEt61B_mVFUYe1qpv_milPT5LBHQgNXPUxQpXB6WCHo0areRONAdiNcV4ukcNILz5KC0RepD4khfRzQIerlyYIuLIO0CdPligQu-0ata9ofHPvInwWScrXfHrx4orJnnjbdbyLSHojqK5P06-Fjo9FocEnoLg&h=v9lcVSnmsxEaC5sGTXJFOilCjrcXv-qDOaZcZgkdXOQ cache-control: - no-cache content-length: - - '567' + - '598' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:22:00 GMT + - Mon, 04 Nov 2024 02:31:49 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '199' + x-msedge-ref: + - 'Ref A: 4E632E9F0A6A4CAD96D7063EB3172DC1 Ref B: MAA201060514051 Ref C: 2024-11-04T02:31:45Z' status: code: 201 message: Created @@ -43034,9 +56611,55 @@ interactions: ParameterSetName: - -g -n -l --sku 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/e32e8c27-a7a2-4992-bdb7-92af721a5d2d?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/662ec1ac-7ac9-4a5a-838d-683cb2395ab4?api-version=2022-01-01&t=638662843098288178&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=gfvm9VWfMOL8yLPgB2TdUxiuxK4lxZB-K9jNZiWKAf-pvkQ1tZMpMfaFwq7QZrn1NfZrCC78Dz9eRz1wOpfQdKvepSFaZ47ICMwNTIgDErrDWTtcrsUbErYZaIs7F3UyijePowhePH6A-JeJjcLo9qefF6StK-NSAxlRf62GBZxvlzHr6ShZiKMgnsEt61B_mVFUYe1qpv_milPT5LBHQgNXPUxQpXB6WCHo0areRONAdiNcV4ukcNILz5KC0RepD4khfRzQIerlyYIuLIO0CdPligQu-0ata9ofHPvInwWScrXfHrx4orJnnjbdbyLSHojqK5P06-Fjo9FocEnoLg&h=v9lcVSnmsxEaC5sGTXJFOilCjrcXv-qDOaZcZgkdXOQ + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 04 Nov 2024 02:31:49 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-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C74F172386414EE397A697ED4D0FEC5B Ref B: MAA201060514051 Ref C: 2024-11-04T02:31:49Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall policy create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --sku + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/662ec1ac-7ac9-4a5a-838d-683cb2395ab4?api-version=2022-01-01&t=638662843098288178&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=gfvm9VWfMOL8yLPgB2TdUxiuxK4lxZB-K9jNZiWKAf-pvkQ1tZMpMfaFwq7QZrn1NfZrCC78Dz9eRz1wOpfQdKvepSFaZ47ICMwNTIgDErrDWTtcrsUbErYZaIs7F3UyijePowhePH6A-JeJjcLo9qefF6StK-NSAxlRf62GBZxvlzHr6ShZiKMgnsEt61B_mVFUYe1qpv_milPT5LBHQgNXPUxQpXB6WCHo0areRONAdiNcV4ukcNILz5KC0RepD4khfRzQIerlyYIuLIO0CdPligQu-0ata9ofHPvInwWScrXfHrx4orJnnjbdbyLSHojqK5P06-Fjo9FocEnoLg&h=v9lcVSnmsxEaC5sGTXJFOilCjrcXv-qDOaZcZgkdXOQ response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -43048,21 +56671,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:22:00 GMT + - Mon, 04 Nov 2024 02:32:00 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 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-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: AF98E3E6988940368CB6CF4F21265604 Ref B: MAA201060514051 Ref C: 2024-11-04T02:32:00Z' status: code: 200 message: OK @@ -43080,43 +56703,43 @@ interactions: ParameterSetName: - -g -n -l --sku 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.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2?api-version=2022-01-01 response: body: - string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Premium\"\ - \r\n },\r\n \"childPolicies\": [],\r\n \"ruleCollectionGroups\":\ - \ [],\r\n \"firewalls\": [],\r\n \"threatIntelMode\": \"Alert\",\r\n\ - \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\"\ - ,\r\n \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\"\ - ,\r\n \"etag\": \"a0e87e86-380f-4822-a9e0-6c8aec6335c7\",\r\n \"location\"\ - : \"westus2\"\r\n}" + string: "{\r\n \"properties\": {\r\n \"size\": \"0.001246452 MB\",\r\n \"sku\": + {\r\n \"tier\": \"Premium\"\r\n },\r\n \"childPolicies\": [],\r\n + \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"threatIntelMode\": + \"Alert\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\",\r\n + \ \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n + \ \"etag\": \"2b11df20-b3b6-4b2e-92fc-b31e31e5aa03\",\r\n \"location\": \"westus2\"\r\n}" headers: cache-control: - no-cache content-length: - - '568' + - '599' content-type: - application/json; charset=utf-8 date: - - Tue, 08 Aug 2023 02:22:00 GMT + - Mon, 04 Nov 2024 02:32:01 GMT etag: - - '"a0e87e86-380f-4822-a9e0-6c8aec6335c7"' + - '"2b11df20-b3b6-4b2e-92fc-b31e31e5aa03"' expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 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-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: D674C6D8CE3B47E4867DE92DA581BE1E Ref B: MAA201060514051 Ref C: 2024-11-04T02:32:01Z' status: code: 200 message: OK diff --git a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_firewall_basic_sku.yaml b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_firewall_basic_sku.yaml index 1cf49e91b02..ad46fcdcf4e 100644 --- a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_firewall_basic_sku.yaml +++ b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_firewall_basic_sku.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -n -g --sku --tier User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_firewall_basic_sku_000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001","name":"cli_test_firewall_basic_sku_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_firewall_basic_sku","date":"2024-07-25T10:47:42Z","module":"azure-firewall","Created":"2024-07-25T10:47:45.1857988Z","CreationDate":"2024-07-25T10:47:45.1857917Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001","name":"cli_test_firewall_basic_sku_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_firewall_basic_sku","date":"2024-11-04T02:52:33Z","module":"azure-firewall","Creator":"v-ruih@microsoft.com","DateCreated":"2024-11-04T02:52:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '492' + - '475' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:47:46 GMT + - Mon, 04 Nov 2024 02:52:41 GMT expires: - '-1' pragma: @@ -38,8 +38,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: B566FA90817749FDBA60AC4888042EAA Ref B: MRS211050618035 Ref C: 2024-07-25T10:47:47Z' + - 'Ref A: C9F5A141729747A292CD481A1CD461FE Ref B: MAA201060515021 Ref C: 2024-11-04T02:52:40Z' status: code: 200 message: OK @@ -57,21 +59,21 @@ interactions: ParameterSetName: - -n -g --address-prefixes --subnet-name --subnet-prefixes User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_firewall_basic_sku_000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001","name":"cli_test_firewall_basic_sku_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_firewall_basic_sku","date":"2024-07-25T10:47:42Z","module":"azure-firewall","Created":"2024-07-25T10:47:45.1857988Z","CreationDate":"2024-07-25T10:47:45.1857917Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001","name":"cli_test_firewall_basic_sku_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_firewall_basic_sku","date":"2024-11-04T02:52:33Z","module":"azure-firewall","Creator":"v-ruih@microsoft.com","DateCreated":"2024-11-04T02:52:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '492' + - '475' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:47:47 GMT + - Mon, 04 Nov 2024 02:52:42 GMT expires: - '-1' pragma: @@ -82,8 +84,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 0ADC06E858A2492F97ECB3E9320E4521 Ref B: MRS211050618011 Ref C: 2024-07-25T10:47:47Z' + - 'Ref A: A33CAC718F4C46A7AA7996E39E79F2D5 Ref B: MAA201060515031 Ref C: 2024-11-04T02:52:42Z' status: code: 200 message: OK @@ -108,38 +112,25 @@ interactions: ParameterSetName: - -n -g --address-prefixes --subnet-name --subnet-prefixes User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003?api-version=2024-03-01 response: body: - string: "{\r\n \"name\": \"vnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003\",\r\n - \ \"etag\": \"W/\\\"a3103231-fd51-4fd0-afe9-2516a772a065\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"e9f01518-8a4e-4697-910b-6d31b4b9cfe6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"AzureFirewallSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallSubnet\",\r\n - \ \"etag\": \"W/\\\"a3103231-fd51-4fd0-afe9-2516a772a065\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" + string: '{"name":"vnet-000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003","etag":"W/\"5c753f4b-18c4-4650-84ab-ef9310a347a5\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"f6bae441-465d-4e72-a828-d0b244056178","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"AzureFirewallSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallSubnet","etag":"W/\"5c753f4b-18c4-4650-84ab-ef9310a347a5\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/78f4dc36-2a18-472b-bdda-86bfc1bbb811?api-version=2022-01-01&t=638575012703205614&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=BeEglEd0OVC2Ql7q2tBUO_peoDr8lPF2gzvVaZoAi2IPwDAPjfjzVGVruffHTl4NCKvYKQFoZyQFCp_tXUozHgK5cIlINgcb50LGc7KfYXDxpLQ69XEXR60bKTdTU7lOPDAQYAxXnpG1AkF8CRZ1WAejjOI2yaz1Y_qeteJqxsQ80YMz9MIaBPO-7vIjoVCTsryJw5CHRCnhD4reKPnAdxHmg7oNAMMr8sLCwA2TNZz-veI7em9_3iC_kfQXzeybmG7MQRrowOTNGSL3AS3aEgsWAsXVesreXTB_c2qOlbVPyE1ICUrdep0HeNkJd2hAcLJIL9mu8Fh5a3SXfd3TlQ&h=R2vBHCTBde8a8LRHa6J1iPWAX4RgC_YSFUN2EubxA4A + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bb6d673b-db33-4f1b-8da1-3d18673236a9?api-version=2024-03-01&t=638662855670335097&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=KJaSVLC1TK2VgfORf3MdDnXVE54wMt4szN1yBCJ7sCOUy5gYCYHvgT7T-UMY62SAArYa4az6NJV2Myp95jnAzRt5Acjv1RuBtZCxP3ip1xBvUs5wIAxuqoBDGAQBUclGt3l_9rR2OBmkSTux0nJZZbGJeekiNSMyxZNFkizgqXluzcE4Zy3Q1MsselNk1M_ghVvPdgSHKJUiWeMQSLcgYgOTjU_RnBxIt6ljU-IB8bS4prZfkyBc_tjfG02Ebne4bDYRUgectBqXcKP-gzD-5MN_3YTEuF6okqcIs8-lO5MPbmkMPr5zuXaGGdoKiSMzkEA3ejJfBxjHU8aNHPXxxA&h=NKvFrJg4e17qKmxyW9wcKYwg9MnKOUkFIMalhAJT6s8 cache-control: - no-cache content-length: - - '1295' + - '1073' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:47:49 GMT + - Mon, 04 Nov 2024 02:52:46 GMT expires: - '-1' pragma: @@ -151,11 +142,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 85d19a6e-169f-46a2-a4e7-a981647b6703 + - b303db61-0f06-4521-8fd0-bcc70f1972d9 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '1152' + - '199' x-msedge-ref: - - 'Ref A: 4D61E09837BD4D3A86B1D2307D306BD0 Ref B: MRS211050618023 Ref C: 2024-07-25T10:47:48Z' + - 'Ref A: 6F1DB67392844FF1AFD8437EA9F987E0 Ref B: MAA201060514049 Ref C: 2024-11-04T02:52:43Z' status: code: 201 message: Created @@ -173,21 +166,21 @@ interactions: ParameterSetName: - -n -g --address-prefixes --subnet-name --subnet-prefixes User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/78f4dc36-2a18-472b-bdda-86bfc1bbb811?api-version=2022-01-01&t=638575012703205614&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=BeEglEd0OVC2Ql7q2tBUO_peoDr8lPF2gzvVaZoAi2IPwDAPjfjzVGVruffHTl4NCKvYKQFoZyQFCp_tXUozHgK5cIlINgcb50LGc7KfYXDxpLQ69XEXR60bKTdTU7lOPDAQYAxXnpG1AkF8CRZ1WAejjOI2yaz1Y_qeteJqxsQ80YMz9MIaBPO-7vIjoVCTsryJw5CHRCnhD4reKPnAdxHmg7oNAMMr8sLCwA2TNZz-veI7em9_3iC_kfQXzeybmG7MQRrowOTNGSL3AS3aEgsWAsXVesreXTB_c2qOlbVPyE1ICUrdep0HeNkJd2hAcLJIL9mu8Fh5a3SXfd3TlQ&h=R2vBHCTBde8a8LRHa6J1iPWAX4RgC_YSFUN2EubxA4A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bb6d673b-db33-4f1b-8da1-3d18673236a9?api-version=2024-03-01&t=638662855670335097&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=KJaSVLC1TK2VgfORf3MdDnXVE54wMt4szN1yBCJ7sCOUy5gYCYHvgT7T-UMY62SAArYa4az6NJV2Myp95jnAzRt5Acjv1RuBtZCxP3ip1xBvUs5wIAxuqoBDGAQBUclGt3l_9rR2OBmkSTux0nJZZbGJeekiNSMyxZNFkizgqXluzcE4Zy3Q1MsselNk1M_ghVvPdgSHKJUiWeMQSLcgYgOTjU_RnBxIt6ljU-IB8bS4prZfkyBc_tjfG02Ebne4bDYRUgectBqXcKP-gzD-5MN_3YTEuF6okqcIs8-lO5MPbmkMPr5zuXaGGdoKiSMzkEA3ejJfBxjHU8aNHPXxxA&h=NKvFrJg4e17qKmxyW9wcKYwg9MnKOUkFIMalhAJT6s8 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:47:50 GMT + - Mon, 04 Nov 2024 02:52:47 GMT expires: - '-1' pragma: @@ -199,9 +192,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 033fcfe3-e1b1-49c5-8561-20e11ea284ba + - 2eaf2548-7dc3-400f-bc15-f516eda844c8 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 1321667962A148CDA225D191ACE7E3B7 Ref B: MRS211050618023 Ref C: 2024-07-25T10:47:50Z' + - 'Ref A: 3A3EB61A270E4C9D9A6FF1BD7D13F0AE Ref B: MAA201060514049 Ref C: 2024-11-04T02:52:47Z' status: code: 200 message: OK @@ -219,21 +214,21 @@ interactions: ParameterSetName: - -n -g --address-prefixes --subnet-name --subnet-prefixes User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/78f4dc36-2a18-472b-bdda-86bfc1bbb811?api-version=2022-01-01&t=638575012703205614&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=BeEglEd0OVC2Ql7q2tBUO_peoDr8lPF2gzvVaZoAi2IPwDAPjfjzVGVruffHTl4NCKvYKQFoZyQFCp_tXUozHgK5cIlINgcb50LGc7KfYXDxpLQ69XEXR60bKTdTU7lOPDAQYAxXnpG1AkF8CRZ1WAejjOI2yaz1Y_qeteJqxsQ80YMz9MIaBPO-7vIjoVCTsryJw5CHRCnhD4reKPnAdxHmg7oNAMMr8sLCwA2TNZz-veI7em9_3iC_kfQXzeybmG7MQRrowOTNGSL3AS3aEgsWAsXVesreXTB_c2qOlbVPyE1ICUrdep0HeNkJd2hAcLJIL9mu8Fh5a3SXfd3TlQ&h=R2vBHCTBde8a8LRHa6J1iPWAX4RgC_YSFUN2EubxA4A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bb6d673b-db33-4f1b-8da1-3d18673236a9?api-version=2024-03-01&t=638662855670335097&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=KJaSVLC1TK2VgfORf3MdDnXVE54wMt4szN1yBCJ7sCOUy5gYCYHvgT7T-UMY62SAArYa4az6NJV2Myp95jnAzRt5Acjv1RuBtZCxP3ip1xBvUs5wIAxuqoBDGAQBUclGt3l_9rR2OBmkSTux0nJZZbGJeekiNSMyxZNFkizgqXluzcE4Zy3Q1MsselNk1M_ghVvPdgSHKJUiWeMQSLcgYgOTjU_RnBxIt6ljU-IB8bS4prZfkyBc_tjfG02Ebne4bDYRUgectBqXcKP-gzD-5MN_3YTEuF6okqcIs8-lO5MPbmkMPr5zuXaGGdoKiSMzkEA3ejJfBxjHU8aNHPXxxA&h=NKvFrJg4e17qKmxyW9wcKYwg9MnKOUkFIMalhAJT6s8 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:48:00 GMT + - Mon, 04 Nov 2024 02:52:58 GMT expires: - '-1' pragma: @@ -245,9 +240,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3fb67a55-0167-4b32-82fb-59ea496a0c8d + - 0595b473-cf28-43e1-9da8-350752cd5f56 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: B3F4629F09334EC1B172378AEDF7064C Ref B: MRS211050618023 Ref C: 2024-07-25T10:48:00Z' + - 'Ref A: 1810E6D7C1F4439394AD70EC5A2BABD0 Ref B: MAA201060514049 Ref C: 2024-11-04T02:52:58Z' status: code: 200 message: OK @@ -265,36 +262,23 @@ interactions: ParameterSetName: - -n -g --address-prefixes --subnet-name --subnet-prefixes User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003?api-version=2024-03-01 response: body: - string: "{\r\n \"name\": \"vnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003\",\r\n - \ \"etag\": \"W/\\\"15d183f8-3325-4850-8784-e824fe7dde17\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"e9f01518-8a4e-4697-910b-6d31b4b9cfe6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"AzureFirewallSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallSubnet\",\r\n - \ \"etag\": \"W/\\\"15d183f8-3325-4850-8784-e824fe7dde17\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" + string: '{"name":"vnet-000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003","etag":"W/\"fc0587b2-522e-434d-a98e-9ab5d1a47915\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"f6bae441-465d-4e72-a828-d0b244056178","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"privateEndpointVNetPolicies":"Disabled","subnets":[{"name":"AzureFirewallSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallSubnet","etag":"W/\"fc0587b2-522e-434d-a98e-9ab5d1a47915\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: cache-control: - no-cache content-length: - - '1297' + - '1075' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:48:01 GMT + - Mon, 04 Nov 2024 02:52:58 GMT etag: - - W/"15d183f8-3325-4850-8784-e824fe7dde17" + - W/"fc0587b2-522e-434d-a98e-9ab5d1a47915" expires: - '-1' pragma: @@ -306,9 +290,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 18e348e4-84a5-4eff-8aef-830e5e6f6e61 + - b1dbc64c-44c4-4b1a-8f89-2d31dfb3e993 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: E404CD1269B9483DB3525D9B1198D169 Ref B: MRS211050618023 Ref C: 2024-07-25T10:48:01Z' + - 'Ref A: DCD8FAC6AA9E472B9163A61F07695C14 Ref B: MAA201060514049 Ref C: 2024-11-04T02:52:58Z' status: code: 200 message: OK @@ -332,30 +318,25 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallManagementSubnet?api-version=2024-01-01 response: body: - string: "{\r\n \"name\": \"AzureFirewallManagementSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallManagementSubnet\",\r\n - \ \"etag\": \"W/\\\"c4bbfc4e-978d-4593-81f6-d1901e205abd\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n - \ \"ipamPoolPrefixAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": - \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n - \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"AzureFirewallManagementSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallManagementSubnet","etag":"W/\"fa7cac11-0206-4713-bd23-474ae4f00f80\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.1.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e8962f7b-f38d-4eda-ba58-fca73a51f521?api-version=2024-01-01&t=638575012831790235&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=UXGy0KDksu13dI90O73SX72H9N6pckeEdRuOMrD2f_1QDtZQ26vOdzWzXAomdrJS6TEzrsP4SXTp16Jb9Z8-aMxZwQH9DRmphEyFnw5hAD6ZUvlxYrRcoHIp9inKkj_iUvH0F-mOzhUYDzqlPYR2NkvNSifSh6HOZERHipgbzcibtCSaRIeKOmw_7fgaE489XPCyldN0ZecB_L4uq3dIjx4FtWJo20jNj2l2H4gADk9-jmZYENHOlL801cX6khBDOCvnbJywsOWgXTk6WqFpBZSB9C-hvrM0yjHpa1Ism6viY1tn3s1vHcDuh0qosEdHM3WGAlzAaWPHH_ayap-Egg&h=xoNLKv_wvrF2yjjCXAnyhemRqHVsGGP8NlTKjdHVizg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/58557f41-ad61-4bba-9e8d-c0fae75e17d3?api-version=2024-01-01&t=638662855818679496&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=mwaFLN8QZpHXoNq3zkv6jTcldAGmdZFhYZK7ukvj9TlpTdZHimbU3T9cfPwgLu6CDgXkW7Fi8S61D41QbOafHNEvI7Y0BcJkQRGJvsqG_OpR84BBq_t0NYZZ2ef5P5zUWGfEve7IHPLBokf8D7wSQ3SKeON3sm_GXupt2NKgt36a6Euwmjikz3J1Qaz_66wag5Hmswk5ZpEcfrxhkdZlYMOC0v6RWwHjN9DaRiTJQRCOmFOl9A6g_opmsAh4XIf-eLsbVbCecEKX8Dti49Kg6QAMbesE0eVrkB-6l2diAZMG3thOPaZrxB6uzm6WWdDoc8vgLMWZotzSIKTnnXTrBw&h=6ONpkNy8uhhOUjY-jt0Ew9p9C5i8WrluBR_JGNz9MsQ cache-control: - no-cache content-length: - - '633' + - '529' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:48:02 GMT + - Mon, 04 Nov 2024 02:53:01 GMT expires: - '-1' pragma: @@ -367,11 +348,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b74127a5-70d0-40f7-90fb-3c1ca07bfb1f + - 266ccd59-e89a-42d2-be9f-59944ba5da48 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '1159' + - '199' x-msedge-ref: - - 'Ref A: E896AC933765454899F891A3EDFCA141 Ref B: MRS211050315053 Ref C: 2024-07-25T10:48:02Z' + - 'Ref A: E8FBEBB730994ED4B82D45010C3B5EFE Ref B: MAA201060516029 Ref C: 2024-11-04T02:53:00Z' status: code: 201 message: Created @@ -389,21 +372,21 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e8962f7b-f38d-4eda-ba58-fca73a51f521?api-version=2024-01-01&t=638575012831790235&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=UXGy0KDksu13dI90O73SX72H9N6pckeEdRuOMrD2f_1QDtZQ26vOdzWzXAomdrJS6TEzrsP4SXTp16Jb9Z8-aMxZwQH9DRmphEyFnw5hAD6ZUvlxYrRcoHIp9inKkj_iUvH0F-mOzhUYDzqlPYR2NkvNSifSh6HOZERHipgbzcibtCSaRIeKOmw_7fgaE489XPCyldN0ZecB_L4uq3dIjx4FtWJo20jNj2l2H4gADk9-jmZYENHOlL801cX6khBDOCvnbJywsOWgXTk6WqFpBZSB9C-hvrM0yjHpa1Ism6viY1tn3s1vHcDuh0qosEdHM3WGAlzAaWPHH_ayap-Egg&h=xoNLKv_wvrF2yjjCXAnyhemRqHVsGGP8NlTKjdHVizg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/58557f41-ad61-4bba-9e8d-c0fae75e17d3?api-version=2024-01-01&t=638662855818679496&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=mwaFLN8QZpHXoNq3zkv6jTcldAGmdZFhYZK7ukvj9TlpTdZHimbU3T9cfPwgLu6CDgXkW7Fi8S61D41QbOafHNEvI7Y0BcJkQRGJvsqG_OpR84BBq_t0NYZZ2ef5P5zUWGfEve7IHPLBokf8D7wSQ3SKeON3sm_GXupt2NKgt36a6Euwmjikz3J1Qaz_66wag5Hmswk5ZpEcfrxhkdZlYMOC0v6RWwHjN9DaRiTJQRCOmFOl9A6g_opmsAh4XIf-eLsbVbCecEKX8Dti49Kg6QAMbesE0eVrkB-6l2diAZMG3thOPaZrxB6uzm6WWdDoc8vgLMWZotzSIKTnnXTrBw&h=6ONpkNy8uhhOUjY-jt0Ew9p9C5i8WrluBR_JGNz9MsQ response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:48:03 GMT + - Mon, 04 Nov 2024 02:53:01 GMT expires: - '-1' pragma: @@ -415,9 +398,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6753d3ad-81cb-4dcd-8440-77aacae0eb3b + - 69e262cf-6f5b-4819-a393-6e7fb0723a16 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 4B9DB47CD4E44F159CCC946C3BC08FA1 Ref B: MRS211050315053 Ref C: 2024-07-25T10:48:03Z' + - 'Ref A: 07CE48E0C3CA4091960725B7F67644EC Ref B: MAA201060516029 Ref C: 2024-11-04T02:53:02Z' status: code: 200 message: OK @@ -435,28 +420,23 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallManagementSubnet?api-version=2024-01-01 response: body: - string: "{\r\n \"name\": \"AzureFirewallManagementSubnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallManagementSubnet\",\r\n - \ \"etag\": \"W/\\\"189b3a2a-cd5f-48c6-9c5f-dfb2a52ee16b\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n - \ \"ipamPoolPrefixAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": - \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n - \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"AzureFirewallManagementSubnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallManagementSubnet","etag":"W/\"6578fb5b-46bf-49e9-9b84-d77bdee41a7e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.1.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '634' + - '530' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:48:03 GMT + - Mon, 04 Nov 2024 02:53:02 GMT etag: - - W/"189b3a2a-cd5f-48c6-9c5f-dfb2a52ee16b" + - W/"6578fb5b-46bf-49e9-9b84-d77bdee41a7e" expires: - '-1' pragma: @@ -468,9 +448,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a290e396-cd22-4b66-a0de-6039be1623e0 + - d4ac7311-3d41-409d-8a42-71e6d7848f12 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: A04B874B3CE14280855BDAEBC302EDD8 Ref B: MRS211050315053 Ref C: 2024-07-25T10:48:03Z' + - 'Ref A: 6FDB89C817C942FCBF1613C009140AE8 Ref B: MAA201060516029 Ref C: 2024-11-04T02:53:02Z' status: code: 200 message: OK @@ -488,21 +470,21 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_firewall_basic_sku_000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001","name":"cli_test_firewall_basic_sku_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_firewall_basic_sku","date":"2024-07-25T10:47:42Z","module":"azure-firewall","Created":"2024-07-25T10:47:45.1857988Z","CreationDate":"2024-07-25T10:47:45.1857917Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001","name":"cli_test_firewall_basic_sku_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_firewall_basic_sku","date":"2024-11-04T02:52:33Z","module":"azure-firewall","Creator":"v-ruih@microsoft.com","DateCreated":"2024-11-04T02:52:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '492' + - '475' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:48:04 GMT + - Mon, 04 Nov 2024 02:53:04 GMT expires: - '-1' pragma: @@ -513,8 +495,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 2C8695F080AF41469053B96981FE46AB Ref B: MRS211050619031 Ref C: 2024-07-25T10:48:04Z' + - 'Ref A: 29F10F426DC94913A1CE8506CBC636BF Ref B: MAA201060513029 Ref C: 2024-11-04T02:53:04Z' status: code: 200 message: OK @@ -537,33 +521,25 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/publicIPAddresses/public-ip-000006?api-version=2022-11-01 response: body: - string: "{\r\n \"name\": \"public-ip-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/publicIPAddresses/public-ip-000006\",\r\n - \ \"etag\": \"W/\\\"c0e468f0-8502-4ec7-ad93-d4b238deb3e7\\\"\",\r\n \"location\": - \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"89b05158-8c5f-46cb-be0f-1d58ab1218ff\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": - 4,\r\n \"ipTags\": [],\r\n \"ddosSettings\": {\r\n \"protectionMode\": - \"VirtualNetworkInherited\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" + string: '{"name":"public-ip-000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/publicIPAddresses/public-ip-000006","etag":"W/\"d92cfbd1-1a18-4cae-a776-a61be307f2a6\"","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"11da2729-4b01-477d-8c81-dd4e0eb0b50d","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f3ed0a81-ab52-48c2-87c5-7f565a3b0a35?api-version=2022-11-01&t=638575012868830327&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=s-jGnva3JEjrQ-ZJuRVYDktlLMoS1BoHNeZspjsYx16vnjXynlO0MlKDjflTA1BMg9bTD2x38O_ZvwOPSGO-7lqBxeb25jZIZ-0XhQ1enUVEgyTHOuYhF3h9E_S_P8_RQNHn3y9xkuGJg9TfpSArRC4gZysfm1z47wKZMjcZ-NH98VOMiMYcuPEumPvU1EY-io9l-R6L0j9HUZ8WWQeG3Stc0FF3BRKMSe8FkVtfAt_YMlMRTUBXrN0cTzztMrl10kTZIHbYL22Qj-YVRecS9ak7htCB8oiDORfCm02G0oPs3yykZMrQdkFoGjPUX6fIP3H46QG8ZUSFTPYdlHO76A&h=ahsxm0f8lFXunm1GIL83n2DP8Vas9bd06QQHxOeHQO0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/48943dce-7629-41bf-8096-61f4cccfc7a2?api-version=2022-11-01&t=638662855886038246&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=x4H2xGg_EIpuG0BWbALnMFcufdLzhCjFrq1mN_IKkw1cLmc6x7eP_cH8RTyznJyL9C9VkyUDWjEA7OFXLgfpLuqBIG5dLjpm6ISOhU6eThONRnZAxf_0tSljvpifNaYgTZ_opWDp7d3v9CTr71E8D3Z8Uv-gVtNhlA4t6LAxKQUiERTnHacXchTk_6INBPmmmvylCi7iA9AnJtKCsXi3-t-MfciHDbmIZx16Tu3uBSkBK7Na6FlrkyifzrY5RbqnwTYu7VUrigXxYsiJYuw-4VABsdYLeaxgkhcc74OIz4vMgtngCWWz62BGJ1yi0CYabuxFsZpocHvpn9uCUct9pw&h=uAumt7NYNIEXzh0hHjLpxb9zpLPHSuY-zpiLXyWrSzI cache-control: - no-cache content-length: - - '748' + - '625' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:48:06 GMT + - Mon, 04 Nov 2024 02:53:08 GMT expires: - '-1' pragma: @@ -575,11 +551,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - aeae0d9d-0478-42a0-8b8a-73fda23a09a6 + - 7e8ca3df-fd87-4678-a016-41ef028740fc + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '1151' + - '199' x-msedge-ref: - - 'Ref A: 0344F008F18245018FB3EB43B6DFB452 Ref B: MRS211050313039 Ref C: 2024-07-25T10:48:05Z' + - 'Ref A: 6C6E4B45A32D45C494D6B57B5FE9808E Ref B: MAA201060515029 Ref C: 2024-11-04T02:53:05Z' status: code: 201 message: Created @@ -597,21 +575,21 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f3ed0a81-ab52-48c2-87c5-7f565a3b0a35?api-version=2022-11-01&t=638575012868830327&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=s-jGnva3JEjrQ-ZJuRVYDktlLMoS1BoHNeZspjsYx16vnjXynlO0MlKDjflTA1BMg9bTD2x38O_ZvwOPSGO-7lqBxeb25jZIZ-0XhQ1enUVEgyTHOuYhF3h9E_S_P8_RQNHn3y9xkuGJg9TfpSArRC4gZysfm1z47wKZMjcZ-NH98VOMiMYcuPEumPvU1EY-io9l-R6L0j9HUZ8WWQeG3Stc0FF3BRKMSe8FkVtfAt_YMlMRTUBXrN0cTzztMrl10kTZIHbYL22Qj-YVRecS9ak7htCB8oiDORfCm02G0oPs3yykZMrQdkFoGjPUX6fIP3H46QG8ZUSFTPYdlHO76A&h=ahsxm0f8lFXunm1GIL83n2DP8Vas9bd06QQHxOeHQO0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/48943dce-7629-41bf-8096-61f4cccfc7a2?api-version=2022-11-01&t=638662855886038246&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=x4H2xGg_EIpuG0BWbALnMFcufdLzhCjFrq1mN_IKkw1cLmc6x7eP_cH8RTyznJyL9C9VkyUDWjEA7OFXLgfpLuqBIG5dLjpm6ISOhU6eThONRnZAxf_0tSljvpifNaYgTZ_opWDp7d3v9CTr71E8D3Z8Uv-gVtNhlA4t6LAxKQUiERTnHacXchTk_6INBPmmmvylCi7iA9AnJtKCsXi3-t-MfciHDbmIZx16Tu3uBSkBK7Na6FlrkyifzrY5RbqnwTYu7VUrigXxYsiJYuw-4VABsdYLeaxgkhcc74OIz4vMgtngCWWz62BGJ1yi0CYabuxFsZpocHvpn9uCUct9pw&h=uAumt7NYNIEXzh0hHjLpxb9zpLPHSuY-zpiLXyWrSzI response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '30' + - '22' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:48:07 GMT + - Mon, 04 Nov 2024 02:53:09 GMT expires: - '-1' pragma: @@ -623,9 +601,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e0453c9c-5ee8-44f4-96ba-969315018843 + - 1cd2f8ab-7d6d-4915-b292-9372e9b51376 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 81B634B7F1FF49A8917D340CEB53A123 Ref B: MRS211050313039 Ref C: 2024-07-25T10:48:06Z' + - 'Ref A: F49E98F8CE1B4C0D8DE5A4A1C1EC5F0D Ref B: MAA201060515029 Ref C: 2024-11-04T02:53:08Z' status: code: 200 message: OK @@ -643,21 +623,23 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f3ed0a81-ab52-48c2-87c5-7f565a3b0a35?api-version=2022-11-01&t=638575012868830327&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=s-jGnva3JEjrQ-ZJuRVYDktlLMoS1BoHNeZspjsYx16vnjXynlO0MlKDjflTA1BMg9bTD2x38O_ZvwOPSGO-7lqBxeb25jZIZ-0XhQ1enUVEgyTHOuYhF3h9E_S_P8_RQNHn3y9xkuGJg9TfpSArRC4gZysfm1z47wKZMjcZ-NH98VOMiMYcuPEumPvU1EY-io9l-R6L0j9HUZ8WWQeG3Stc0FF3BRKMSe8FkVtfAt_YMlMRTUBXrN0cTzztMrl10kTZIHbYL22Qj-YVRecS9ak7htCB8oiDORfCm02G0oPs3yykZMrQdkFoGjPUX6fIP3H46QG8ZUSFTPYdlHO76A&h=ahsxm0f8lFXunm1GIL83n2DP8Vas9bd06QQHxOeHQO0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/publicIPAddresses/public-ip-000006?api-version=2022-11-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"name":"public-ip-000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/publicIPAddresses/public-ip-000006","etag":"W/\"10aa79e5-147b-486c-ab39-329db5923e47\"","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"11da2729-4b01-477d-8c81-dd4e0eb0b50d","ipAddress":"20.253.241.125","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ddosSettings":{"protectionMode":"VirtualNetworkInherited"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}' headers: cache-control: - no-cache content-length: - - '29' + - '655' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:48:09 GMT + - Mon, 04 Nov 2024 02:53:10 GMT + etag: + - W/"10aa79e5-147b-486c-ab39-329db5923e47" expires: - '-1' pragma: @@ -669,9 +651,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7a9a5c33-66bb-47b8-9715-ca2280f81efc + - deca9ba6-7f4e-4f24-a25a-f21d32aece5d + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 2AD9ED2A1C0749ECA6803B7381F96807 Ref B: MRS211050313039 Ref C: 2024-07-25T10:48:09Z' + - 'Ref A: 59B2AD5FDC964A558005CDA098D3BC15 Ref B: MAA201060515029 Ref C: 2024-11-04T02:53:09Z' status: code: 200 message: OK @@ -679,42 +663,31 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - network public-ip create + - network firewall create Connection: - keep-alive ParameterSetName: - - -n -g --sku + - -n -g --sku --tier --vnet-name --conf-name --m-conf-name --m-public-ip User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/publicIPAddresses/public-ip-000006?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_firewall_basic_sku_000001?api-version=2022-09-01 response: body: - string: "{\r\n \"name\": \"public-ip-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/publicIPAddresses/public-ip-000006\",\r\n - \ \"etag\": \"W/\\\"a4aa6864-1039-49a2-b728-40150f34f629\\\"\",\r\n \"location\": - \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"89b05158-8c5f-46cb-be0f-1d58ab1218ff\",\r\n \"ipAddress\": - \"52.157.2.110\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": - \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n - \ \"ddosSettings\": {\r\n \"protectionMode\": \"VirtualNetworkInherited\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001","name":"cli_test_firewall_basic_sku_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_firewall_basic_sku","date":"2024-11-04T02:52:33Z","module":"azure-firewall","Creator":"v-ruih@microsoft.com","DateCreated":"2024-11-04T02:52:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '783' + - '475' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:48:10 GMT - etag: - - W/"a4aa6864-1039-49a2-b728-40150f34f629" + - Mon, 04 Nov 2024 02:53:10 GMT expires: - '-1' pragma: @@ -725,15 +698,20 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 8668f086-b35d-414d-b535-53622084af6e + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 40AD6EC9A75D44D4BA6C2DBE4FB6FBFD Ref B: MRS211050313039 Ref C: 2024-07-25T10:48:09Z' + - 'Ref A: EB6B13B80BDA46E9993CF8975603807B Ref B: MAA201060514017 Ref C: 2024-11-04T02:53:10Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "westus", "properties": {"additionalProperties": {}, "ipConfigurations": + [{"name": "ipconfig-000004", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallSubnet"}}}], + "managementIpConfiguration": {"name": "ipconfig-000005", "properties": {"publicIPAddress": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/publicIPAddresses/public-ip-000006"}, + "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallManagementSubnet"}}}, + "sku": {"name": "AZFW_VNet", "tier": "Basic"}}}' headers: Accept: - application/json @@ -743,24 +721,82 @@ interactions: - network firewall create Connection: - keep-alive + Content-Length: + - '873' + Content-Type: + - application/json + ParameterSetName: + - -n -g --sku --tier --vnet-name --conf-name --m-conf-name --m-public-ip + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002?api-version=2022-01-01 + response: + body: + string: '{"name":"firewall-000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002","etag":"W/\"59dbccdc-ccda-47e2-8468-83e461c1b5ed\"","type":"Microsoft.Network/azureFirewalls","location":"westus","properties":{"provisioningState":"Updating","sku":{"name":"AZFW_VNet","tier":"Basic"},"threatIntelMode":"Alert","additionalProperties":{},"managementIpConfiguration":{"name":"ipconfig-000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002/azureFirewallIpConfigurations/ipconfig-000005","etag":"W/\"59dbccdc-ccda-47e2-8468-83e461c1b5ed\"","type":"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/publicIPAddresses/public-ip-000006"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallManagementSubnet"}}},"ipConfigurations":[{"name":"ipconfig-000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002/azureFirewallIpConfigurations/ipconfig-000004","etag":"W/\"59dbccdc-ccda-47e2-8468-83e461c1b5ed\"","type":"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallSubnet"}}}],"networkRuleCollections":[],"applicationRuleCollections":[],"natRuleCollections":[]}}' + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0e0025bd-354a-47f7-9425-5d8b7f7022f0?api-version=2022-01-01&t=638662855950086493&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=jxwcJ-EhXhoSu38NMYaeIPQPWs8l3hF-VKmqkEgGAslJSzqQbrKLmjm4JDdSdLgLNkvakmTLfLWr9yRjvBL9BM3CykKz7iaqheLYSkT-fzthZBPrvXLWTMEVvj1oqgv-i4tMSmarQMHVYa5WDRnaPFRUwtZ_gIOW4tmg-OKvMsv9GsTcKa5WKZAA0IX45PPqtd7txN2iPFNr0HLrUblt3zWxMHFEkfZ8h1H0OydzCvIUyLqGcxw5YpgsjVwq1hOzX569wHzifpb141A0h_drInNB5_Mowuf3ICzfqzKPjxoc2ot9qsLyyQnJUJU7c7PiajI6C4BjcMqza46oRsG9xw&h=22WKj2y5qkCRfgVFxeoCx26KSH5239_EABIGDPQijMs + cache-control: + - no-cache + content-length: + - '2091' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 04 Nov 2024 02:53:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 95f7672f-bbce-4c7b-9bc1-77865b26e098 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2998' + x-ms-ratelimit-remaining-subscription-writes: + - '198' + x-msedge-ref: + - 'Ref A: F620EDB4DE2A42F6BA62FCAFDFAFB887 Ref B: MAA201060516047 Ref C: 2024-11-04T02:53:11Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall create + Connection: + - keep-alive ParameterSetName: - -n -g --sku --tier --vnet-name --conf-name --m-conf-name --m-public-ip User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_firewall_basic_sku_000001?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0e0025bd-354a-47f7-9425-5d8b7f7022f0?api-version=2022-01-01&t=638662855950086493&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=jxwcJ-EhXhoSu38NMYaeIPQPWs8l3hF-VKmqkEgGAslJSzqQbrKLmjm4JDdSdLgLNkvakmTLfLWr9yRjvBL9BM3CykKz7iaqheLYSkT-fzthZBPrvXLWTMEVvj1oqgv-i4tMSmarQMHVYa5WDRnaPFRUwtZ_gIOW4tmg-OKvMsv9GsTcKa5WKZAA0IX45PPqtd7txN2iPFNr0HLrUblt3zWxMHFEkfZ8h1H0OydzCvIUyLqGcxw5YpgsjVwq1hOzX569wHzifpb141A0h_drInNB5_Mowuf3ICzfqzKPjxoc2ot9qsLyyQnJUJU7c7PiajI6C4BjcMqza46oRsG9xw&h=22WKj2y5qkCRfgVFxeoCx26KSH5239_EABIGDPQijMs response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001","name":"cli_test_firewall_basic_sku_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_firewall_basic_sku","date":"2024-07-25T10:47:42Z","module":"azure-firewall","Created":"2024-07-25T10:47:45.1857988Z","CreationDate":"2024-07-25T10:47:45.1857917Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '492' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:48:09 GMT + - Mon, 04 Nov 2024 02:53:15 GMT expires: - '-1' pragma: @@ -771,74 +807,44 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 50da1cf4-7b82-4fd4-9b68-c067433f503c + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 75543FB982964034A95F02AE58D967DB Ref B: MRS211050315045 Ref C: 2024-07-25T10:48:10Z' + - 'Ref A: 72761E57974F487EA04C8C198990D1F0 Ref B: MAA201060516047 Ref C: 2024-11-04T02:53:15Z' status: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"additionalProperties": {}, "ipConfigurations": - [{"name": "ipconfig-000004", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallSubnet"}}}], - "managementIpConfiguration": {"name": "ipconfig-000005", "properties": {"publicIPAddress": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/publicIPAddresses/public-ip-000006"}, - "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallManagementSubnet"}}}, - "sku": {"name": "AZFW_VNet", "tier": "Basic"}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - network firewall create Connection: - keep-alive - Content-Length: - - '873' - Content-Type: - - application/json ParameterSetName: - -n -g --sku --tier --vnet-name --conf-name --m-conf-name --m-public-ip User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002?api-version=2022-01-01 + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0e0025bd-354a-47f7-9425-5d8b7f7022f0?api-version=2022-01-01&t=638662855950086493&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=jxwcJ-EhXhoSu38NMYaeIPQPWs8l3hF-VKmqkEgGAslJSzqQbrKLmjm4JDdSdLgLNkvakmTLfLWr9yRjvBL9BM3CykKz7iaqheLYSkT-fzthZBPrvXLWTMEVvj1oqgv-i4tMSmarQMHVYa5WDRnaPFRUwtZ_gIOW4tmg-OKvMsv9GsTcKa5WKZAA0IX45PPqtd7txN2iPFNr0HLrUblt3zWxMHFEkfZ8h1H0OydzCvIUyLqGcxw5YpgsjVwq1hOzX569wHzifpb141A0h_drInNB5_Mowuf3ICzfqzKPjxoc2ot9qsLyyQnJUJU7c7PiajI6C4BjcMqza46oRsG9xw&h=22WKj2y5qkCRfgVFxeoCx26KSH5239_EABIGDPQijMs response: body: - string: "{\r\n \"name\": \"firewall-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002\",\r\n - \ \"etag\": \"W/\\\"5abe7201-43c1-4fca-9368-f1f78f0e3bb4\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": - \"AZFW_VNet\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"threatIntelMode\": - \"Alert\",\r\n \"additionalProperties\": {},\r\n \"managementIpConfiguration\": - {\r\n \"name\": \"ipconfig-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002/azureFirewallIpConfigurations/ipconfig-000005\",\r\n - \ \"etag\": \"W/\\\"5abe7201-43c1-4fca-9368-f1f78f0e3bb4\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": - \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/publicIPAddresses/public-ip-000006\"\r\n - \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallManagementSubnet\"\r\n - \ }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n - \ \"name\": \"ipconfig-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002/azureFirewallIpConfigurations/ipconfig-000004\",\r\n - \ \"etag\": \"W/\\\"5abe7201-43c1-4fca-9368-f1f78f0e3bb4\\\"\",\r\n - \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallSubnet\"\r\n - \ }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": - [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": - []\r\n }\r\n}" + string: '{"status":"InProgress"}' headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cc8b5c52-c2e7-4bdb-a4da-018381d503cb?api-version=2022-01-01&t=638575012930392730&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=HBVy4d1w1buPxwg3lSJFdcUux6bNA0VWdi2Q17Ua8PpWuPrrt7hseVksU4r4hxM3jaoowIs-Rs1KSIfFAtgP6FF7ELx-Zv7IPFqn86y626j3BnhLNFeQ9bja1ouB4pKEHXYMcmjv7XM1XIJ-FQ5oQ69q2ngUkwLkAZmbmy4hEKI6lT0eYDoOOJ4fvJx_oWC7VtZTyUfL8I5SLiouIru_EhHw-FjKhJS39UapJnfZc0FQrXaPSjAiA864dzfg-Zozd7mSbFhO-GKVtra4YJPhlZMlBMNfGu20pHb0tu0dp2F9-dXs4EU4ZgvhGwO6M6jkYf0hC8r7ETFhLo313y7Pww&h=RhKTYpiLyDjwX1ZT_H0srpEd4pSILnc92utIakDhinU cache-control: - no-cache content-length: - - '2516' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:48:12 GMT + - Mon, 04 Nov 2024 02:53:25 GMT expires: - '-1' pragma: @@ -850,14 +856,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d97d682d-ba6d-4a75-96d6-2219644bc30b - x-ms-ratelimit-remaining-subscription-writes: - - '1150' + - ba05ec11-b594-4723-8197-6d340eb885f1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: F08355F3ECB64F2C898F2FADDB1A59F6 Ref B: MRS211050315049 Ref C: 2024-07-25T10:48:10Z' + - 'Ref A: DACABFDB50CB44E7BC21EADD801F0D51 Ref B: MAA201060516047 Ref C: 2024-11-04T02:53:25Z' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -872,21 +878,21 @@ interactions: ParameterSetName: - -n -g --sku --tier --vnet-name --conf-name --m-conf-name --m-public-ip User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cc8b5c52-c2e7-4bdb-a4da-018381d503cb?api-version=2022-01-01&t=638575012930392730&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=HBVy4d1w1buPxwg3lSJFdcUux6bNA0VWdi2Q17Ua8PpWuPrrt7hseVksU4r4hxM3jaoowIs-Rs1KSIfFAtgP6FF7ELx-Zv7IPFqn86y626j3BnhLNFeQ9bja1ouB4pKEHXYMcmjv7XM1XIJ-FQ5oQ69q2ngUkwLkAZmbmy4hEKI6lT0eYDoOOJ4fvJx_oWC7VtZTyUfL8I5SLiouIru_EhHw-FjKhJS39UapJnfZc0FQrXaPSjAiA864dzfg-Zozd7mSbFhO-GKVtra4YJPhlZMlBMNfGu20pHb0tu0dp2F9-dXs4EU4ZgvhGwO6M6jkYf0hC8r7ETFhLo313y7Pww&h=RhKTYpiLyDjwX1ZT_H0srpEd4pSILnc92utIakDhinU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0e0025bd-354a-47f7-9425-5d8b7f7022f0?api-version=2022-01-01&t=638662855950086493&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=jxwcJ-EhXhoSu38NMYaeIPQPWs8l3hF-VKmqkEgGAslJSzqQbrKLmjm4JDdSdLgLNkvakmTLfLWr9yRjvBL9BM3CykKz7iaqheLYSkT-fzthZBPrvXLWTMEVvj1oqgv-i4tMSmarQMHVYa5WDRnaPFRUwtZ_gIOW4tmg-OKvMsv9GsTcKa5WKZAA0IX45PPqtd7txN2iPFNr0HLrUblt3zWxMHFEkfZ8h1H0OydzCvIUyLqGcxw5YpgsjVwq1hOzX569wHzifpb141A0h_drInNB5_Mowuf3ICzfqzKPjxoc2ot9qsLyyQnJUJU7c7PiajI6C4BjcMqza46oRsG9xw&h=22WKj2y5qkCRfgVFxeoCx26KSH5239_EABIGDPQijMs response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:48:13 GMT + - Mon, 04 Nov 2024 02:53:46 GMT expires: - '-1' pragma: @@ -898,9 +904,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 57a32e97-9ac4-4dbd-bcc5-6a858d8030c2 + - f2a06d9a-2217-4610-90aa-75b6c2428563 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 5F2DABD52C144CEF93D0C8398FD8CF12 Ref B: MRS211050315049 Ref C: 2024-07-25T10:48:13Z' + - 'Ref A: 75C075E43C7F470B81CD21E7823A27DE Ref B: MAA201060516047 Ref C: 2024-11-04T02:53:46Z' status: code: 200 message: OK @@ -918,21 +926,21 @@ interactions: ParameterSetName: - -n -g --sku --tier --vnet-name --conf-name --m-conf-name --m-public-ip User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cc8b5c52-c2e7-4bdb-a4da-018381d503cb?api-version=2022-01-01&t=638575012930392730&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=HBVy4d1w1buPxwg3lSJFdcUux6bNA0VWdi2Q17Ua8PpWuPrrt7hseVksU4r4hxM3jaoowIs-Rs1KSIfFAtgP6FF7ELx-Zv7IPFqn86y626j3BnhLNFeQ9bja1ouB4pKEHXYMcmjv7XM1XIJ-FQ5oQ69q2ngUkwLkAZmbmy4hEKI6lT0eYDoOOJ4fvJx_oWC7VtZTyUfL8I5SLiouIru_EhHw-FjKhJS39UapJnfZc0FQrXaPSjAiA864dzfg-Zozd7mSbFhO-GKVtra4YJPhlZMlBMNfGu20pHb0tu0dp2F9-dXs4EU4ZgvhGwO6M6jkYf0hC8r7ETFhLo313y7Pww&h=RhKTYpiLyDjwX1ZT_H0srpEd4pSILnc92utIakDhinU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0e0025bd-354a-47f7-9425-5d8b7f7022f0?api-version=2022-01-01&t=638662855950086493&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=jxwcJ-EhXhoSu38NMYaeIPQPWs8l3hF-VKmqkEgGAslJSzqQbrKLmjm4JDdSdLgLNkvakmTLfLWr9yRjvBL9BM3CykKz7iaqheLYSkT-fzthZBPrvXLWTMEVvj1oqgv-i4tMSmarQMHVYa5WDRnaPFRUwtZ_gIOW4tmg-OKvMsv9GsTcKa5WKZAA0IX45PPqtd7txN2iPFNr0HLrUblt3zWxMHFEkfZ8h1H0OydzCvIUyLqGcxw5YpgsjVwq1hOzX569wHzifpb141A0h_drInNB5_Mowuf3ICzfqzKPjxoc2ot9qsLyyQnJUJU7c7PiajI6C4BjcMqza46oRsG9xw&h=22WKj2y5qkCRfgVFxeoCx26KSH5239_EABIGDPQijMs response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:48:23 GMT + - Mon, 04 Nov 2024 02:54:07 GMT expires: - '-1' pragma: @@ -944,9 +952,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 64e518f2-92d4-4a2d-bef3-1def89744090 + - 0adfc87a-be5c-49cf-8068-c918d90dea6c + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: E24EAD2614974073A7D86FCE51B6F51A Ref B: MRS211050315049 Ref C: 2024-07-25T10:48:23Z' + - 'Ref A: 5373837BCD5F43FA8778F726CE60AC60 Ref B: MAA201060516047 Ref C: 2024-11-04T02:54:07Z' status: code: 200 message: OK @@ -964,21 +974,21 @@ interactions: ParameterSetName: - -n -g --sku --tier --vnet-name --conf-name --m-conf-name --m-public-ip User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cc8b5c52-c2e7-4bdb-a4da-018381d503cb?api-version=2022-01-01&t=638575012930392730&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=HBVy4d1w1buPxwg3lSJFdcUux6bNA0VWdi2Q17Ua8PpWuPrrt7hseVksU4r4hxM3jaoowIs-Rs1KSIfFAtgP6FF7ELx-Zv7IPFqn86y626j3BnhLNFeQ9bja1ouB4pKEHXYMcmjv7XM1XIJ-FQ5oQ69q2ngUkwLkAZmbmy4hEKI6lT0eYDoOOJ4fvJx_oWC7VtZTyUfL8I5SLiouIru_EhHw-FjKhJS39UapJnfZc0FQrXaPSjAiA864dzfg-Zozd7mSbFhO-GKVtra4YJPhlZMlBMNfGu20pHb0tu0dp2F9-dXs4EU4ZgvhGwO6M6jkYf0hC8r7ETFhLo313y7Pww&h=RhKTYpiLyDjwX1ZT_H0srpEd4pSILnc92utIakDhinU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0e0025bd-354a-47f7-9425-5d8b7f7022f0?api-version=2022-01-01&t=638662855950086493&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=jxwcJ-EhXhoSu38NMYaeIPQPWs8l3hF-VKmqkEgGAslJSzqQbrKLmjm4JDdSdLgLNkvakmTLfLWr9yRjvBL9BM3CykKz7iaqheLYSkT-fzthZBPrvXLWTMEVvj1oqgv-i4tMSmarQMHVYa5WDRnaPFRUwtZ_gIOW4tmg-OKvMsv9GsTcKa5WKZAA0IX45PPqtd7txN2iPFNr0HLrUblt3zWxMHFEkfZ8h1H0OydzCvIUyLqGcxw5YpgsjVwq1hOzX569wHzifpb141A0h_drInNB5_Mowuf3ICzfqzKPjxoc2ot9qsLyyQnJUJU7c7PiajI6C4BjcMqza46oRsG9xw&h=22WKj2y5qkCRfgVFxeoCx26KSH5239_EABIGDPQijMs response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:48:43 GMT + - Mon, 04 Nov 2024 02:54:48 GMT expires: - '-1' pragma: @@ -990,9 +1000,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6b5e2b7f-7d97-469a-983d-0755081e756c + - a9443747-f02c-4bfd-85b2-3414fb6fa6ae + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: C82EBE9724184885BBC5F38B86D0BA45 Ref B: MRS211050315049 Ref C: 2024-07-25T10:48:43Z' + - 'Ref A: 99292BF0A02948189BCD9A64787F59EA Ref B: MAA201060516047 Ref C: 2024-11-04T02:54:48Z' status: code: 200 message: OK @@ -1010,21 +1022,21 @@ interactions: ParameterSetName: - -n -g --sku --tier --vnet-name --conf-name --m-conf-name --m-public-ip User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cc8b5c52-c2e7-4bdb-a4da-018381d503cb?api-version=2022-01-01&t=638575012930392730&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=HBVy4d1w1buPxwg3lSJFdcUux6bNA0VWdi2Q17Ua8PpWuPrrt7hseVksU4r4hxM3jaoowIs-Rs1KSIfFAtgP6FF7ELx-Zv7IPFqn86y626j3BnhLNFeQ9bja1ouB4pKEHXYMcmjv7XM1XIJ-FQ5oQ69q2ngUkwLkAZmbmy4hEKI6lT0eYDoOOJ4fvJx_oWC7VtZTyUfL8I5SLiouIru_EhHw-FjKhJS39UapJnfZc0FQrXaPSjAiA864dzfg-Zozd7mSbFhO-GKVtra4YJPhlZMlBMNfGu20pHb0tu0dp2F9-dXs4EU4ZgvhGwO6M6jkYf0hC8r7ETFhLo313y7Pww&h=RhKTYpiLyDjwX1ZT_H0srpEd4pSILnc92utIakDhinU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0e0025bd-354a-47f7-9425-5d8b7f7022f0?api-version=2022-01-01&t=638662855950086493&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=jxwcJ-EhXhoSu38NMYaeIPQPWs8l3hF-VKmqkEgGAslJSzqQbrKLmjm4JDdSdLgLNkvakmTLfLWr9yRjvBL9BM3CykKz7iaqheLYSkT-fzthZBPrvXLWTMEVvj1oqgv-i4tMSmarQMHVYa5WDRnaPFRUwtZ_gIOW4tmg-OKvMsv9GsTcKa5WKZAA0IX45PPqtd7txN2iPFNr0HLrUblt3zWxMHFEkfZ8h1H0OydzCvIUyLqGcxw5YpgsjVwq1hOzX569wHzifpb141A0h_drInNB5_Mowuf3ICzfqzKPjxoc2ot9qsLyyQnJUJU7c7PiajI6C4BjcMqza46oRsG9xw&h=22WKj2y5qkCRfgVFxeoCx26KSH5239_EABIGDPQijMs response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:49:04 GMT + - Mon, 04 Nov 2024 02:55:28 GMT expires: - '-1' pragma: @@ -1036,9 +1048,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 761c733c-80ef-4ea7-af61-cc3f529e5ee9 + - a2f41d33-0987-4b9b-989b-ff50ad8e9b3b + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 85F9AB25ACB7485B9214382C955926EC Ref B: MRS211050315049 Ref C: 2024-07-25T10:49:04Z' + - 'Ref A: 12FECA2A08584A559C9C6C00934D1E5D Ref B: MAA201060516047 Ref C: 2024-11-04T02:55:28Z' status: code: 200 message: OK @@ -1056,21 +1070,21 @@ interactions: ParameterSetName: - -n -g --sku --tier --vnet-name --conf-name --m-conf-name --m-public-ip User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cc8b5c52-c2e7-4bdb-a4da-018381d503cb?api-version=2022-01-01&t=638575012930392730&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=HBVy4d1w1buPxwg3lSJFdcUux6bNA0VWdi2Q17Ua8PpWuPrrt7hseVksU4r4hxM3jaoowIs-Rs1KSIfFAtgP6FF7ELx-Zv7IPFqn86y626j3BnhLNFeQ9bja1ouB4pKEHXYMcmjv7XM1XIJ-FQ5oQ69q2ngUkwLkAZmbmy4hEKI6lT0eYDoOOJ4fvJx_oWC7VtZTyUfL8I5SLiouIru_EhHw-FjKhJS39UapJnfZc0FQrXaPSjAiA864dzfg-Zozd7mSbFhO-GKVtra4YJPhlZMlBMNfGu20pHb0tu0dp2F9-dXs4EU4ZgvhGwO6M6jkYf0hC8r7ETFhLo313y7Pww&h=RhKTYpiLyDjwX1ZT_H0srpEd4pSILnc92utIakDhinU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0e0025bd-354a-47f7-9425-5d8b7f7022f0?api-version=2022-01-01&t=638662855950086493&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=jxwcJ-EhXhoSu38NMYaeIPQPWs8l3hF-VKmqkEgGAslJSzqQbrKLmjm4JDdSdLgLNkvakmTLfLWr9yRjvBL9BM3CykKz7iaqheLYSkT-fzthZBPrvXLWTMEVvj1oqgv-i4tMSmarQMHVYa5WDRnaPFRUwtZ_gIOW4tmg-OKvMsv9GsTcKa5WKZAA0IX45PPqtd7txN2iPFNr0HLrUblt3zWxMHFEkfZ8h1H0OydzCvIUyLqGcxw5YpgsjVwq1hOzX569wHzifpb141A0h_drInNB5_Mowuf3ICzfqzKPjxoc2ot9qsLyyQnJUJU7c7PiajI6C4BjcMqza46oRsG9xw&h=22WKj2y5qkCRfgVFxeoCx26KSH5239_EABIGDPQijMs response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:49:44 GMT + - Mon, 04 Nov 2024 02:56:50 GMT expires: - '-1' pragma: @@ -1082,9 +1096,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 39c5d9bd-b13b-4df7-aec0-df017ef2e180 + - fa95be3e-ac11-4dfd-9721-7e14e9ab2dd5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 5FAD1FAA06AE4CC694752F3CD432151C Ref B: MRS211050315049 Ref C: 2024-07-25T10:49:44Z' + - 'Ref A: 44EF10EEA44B4C6EB71E0CCBB9135CD9 Ref B: MAA201060515027 Ref C: 2024-11-04T02:56:50Z' status: code: 200 message: OK @@ -1102,21 +1118,21 @@ interactions: ParameterSetName: - -n -g --sku --tier --vnet-name --conf-name --m-conf-name --m-public-ip User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cc8b5c52-c2e7-4bdb-a4da-018381d503cb?api-version=2022-01-01&t=638575012930392730&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=HBVy4d1w1buPxwg3lSJFdcUux6bNA0VWdi2Q17Ua8PpWuPrrt7hseVksU4r4hxM3jaoowIs-Rs1KSIfFAtgP6FF7ELx-Zv7IPFqn86y626j3BnhLNFeQ9bja1ouB4pKEHXYMcmjv7XM1XIJ-FQ5oQ69q2ngUkwLkAZmbmy4hEKI6lT0eYDoOOJ4fvJx_oWC7VtZTyUfL8I5SLiouIru_EhHw-FjKhJS39UapJnfZc0FQrXaPSjAiA864dzfg-Zozd7mSbFhO-GKVtra4YJPhlZMlBMNfGu20pHb0tu0dp2F9-dXs4EU4ZgvhGwO6M6jkYf0hC8r7ETFhLo313y7Pww&h=RhKTYpiLyDjwX1ZT_H0srpEd4pSILnc92utIakDhinU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0e0025bd-354a-47f7-9425-5d8b7f7022f0?api-version=2022-01-01&t=638662855950086493&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=jxwcJ-EhXhoSu38NMYaeIPQPWs8l3hF-VKmqkEgGAslJSzqQbrKLmjm4JDdSdLgLNkvakmTLfLWr9yRjvBL9BM3CykKz7iaqheLYSkT-fzthZBPrvXLWTMEVvj1oqgv-i4tMSmarQMHVYa5WDRnaPFRUwtZ_gIOW4tmg-OKvMsv9GsTcKa5WKZAA0IX45PPqtd7txN2iPFNr0HLrUblt3zWxMHFEkfZ8h1H0OydzCvIUyLqGcxw5YpgsjVwq1hOzX569wHzifpb141A0h_drInNB5_Mowuf3ICzfqzKPjxoc2ot9qsLyyQnJUJU7c7PiajI6C4BjcMqza46oRsG9xw&h=22WKj2y5qkCRfgVFxeoCx26KSH5239_EABIGDPQijMs response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '30' + - '22' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:50:24 GMT + - Mon, 04 Nov 2024 02:59:32 GMT expires: - '-1' pragma: @@ -1128,9 +1144,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 79e057ee-981b-4d32-be3e-0442e70e222e + - 84bcc1cc-7e7b-4741-9b0a-8e56596e45d2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: A219A206D2554E06BAE9C754986FB12B Ref B: MRS211050315049 Ref C: 2024-07-25T10:50:24Z' + - 'Ref A: 5ABA2F3BAD404C0CAF2402C886D6DA91 Ref B: MAA201060513025 Ref C: 2024-11-04T02:59:31Z' status: code: 200 message: OK @@ -1148,21 +1166,23 @@ interactions: ParameterSetName: - -n -g --sku --tier --vnet-name --conf-name --m-conf-name --m-public-ip User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cc8b5c52-c2e7-4bdb-a4da-018381d503cb?api-version=2022-01-01&t=638575012930392730&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=HBVy4d1w1buPxwg3lSJFdcUux6bNA0VWdi2Q17Ua8PpWuPrrt7hseVksU4r4hxM3jaoowIs-Rs1KSIfFAtgP6FF7ELx-Zv7IPFqn86y626j3BnhLNFeQ9bja1ouB4pKEHXYMcmjv7XM1XIJ-FQ5oQ69q2ngUkwLkAZmbmy4hEKI6lT0eYDoOOJ4fvJx_oWC7VtZTyUfL8I5SLiouIru_EhHw-FjKhJS39UapJnfZc0FQrXaPSjAiA864dzfg-Zozd7mSbFhO-GKVtra4YJPhlZMlBMNfGu20pHb0tu0dp2F9-dXs4EU4ZgvhGwO6M6jkYf0hC8r7ETFhLo313y7Pww&h=RhKTYpiLyDjwX1ZT_H0srpEd4pSILnc92utIakDhinU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002?api-version=2022-01-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"name":"firewall-000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002","etag":"W/\"1602c2c8-0b95-4158-92aa-c8bcd7707612\"","type":"Microsoft.Network/azureFirewalls","location":"westus","properties":{"provisioningState":"Succeeded","sku":{"name":"AZFW_VNet","tier":"Basic"},"threatIntelMode":"Alert","additionalProperties":{},"managementIpConfiguration":{"name":"ipconfig-000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002/azureFirewallIpConfigurations/ipconfig-000005","etag":"W/\"1602c2c8-0b95-4158-92aa-c8bcd7707612\"","type":"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/publicIPAddresses/public-ip-000006"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallManagementSubnet"}}},"ipConfigurations":[{"name":"ipconfig-000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002/azureFirewallIpConfigurations/ipconfig-000004","etag":"W/\"1602c2c8-0b95-4158-92aa-c8bcd7707612\"","type":"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallSubnet"}}}],"networkRuleCollections":[],"applicationRuleCollections":[],"natRuleCollections":[]}}' headers: cache-control: - no-cache content-length: - - '30' + - '2122' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:51:44 GMT + - Mon, 04 Nov 2024 02:59:32 GMT + etag: + - W/"1602c2c8-0b95-4158-92aa-c8bcd7707612" expires: - '-1' pragma: @@ -1174,9 +1194,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 62b3b794-5d15-4498-a4a6-9c4ccc7bd345 + - 4fa90548-1876-41f0-babc-2023415587ad + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 664060542BFC4EE6A2F97E40693D8150 Ref B: MRS211050618053 Ref C: 2024-07-25T10:51:45Z' + - 'Ref A: CAA7BC7A7BD14367A1FFB7376A4E4F8C Ref B: MAA201060513025 Ref C: 2024-11-04T02:59:32Z' status: code: 200 message: OK @@ -1188,27 +1210,227 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network firewall delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -n -g --sku --tier --vnet-name --conf-name --m-conf-name --m-public-ip + - -n -g + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002?api-version=2022-01-01 + response: + body: + string: '' + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a87cb3e-9e51-420b-9b3d-151a07311755?api-version=2022-01-01&t=638662859766735113&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=i4mOzoqCbGMdr4Ge-eBTMr__pE94QY6wxOn_bTbZ-fyntfe-J_Ams4h_nxfzMiEAP9_o3Bld6okglV6y8auDZNdak8iUtjbU9QBurDvErsiZnWRtQQDNY7eB1ZpwxTm3c6fp0G9ii9LKpy6dzLGM4fdfJ_KSChwLQ78gGj9roiNCcoAzkSgOwlmTd140EKpUDGRT6_fpq5xQKdin25Cv-3R8w1K-a-WXVQIRElraLTQqC8RsbfNtJGu1qhPU7TAZd-3OF_mEdcpVqyDpllPQWm3h6B18e-1CfJLOrUVA78TcL6NCy9tgFC2tFedghM8ie_gAG-RNd42Ajg5bp438zg&h=6xzs8cdu1bsMIS2drg42W7B1ygBov5gNbMCPplKh7Ag + cache-control: + - no-cache + content-length: + - '0' + date: + - Mon, 04 Nov 2024 02:59:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/5a87cb3e-9e51-420b-9b3d-151a07311755?api-version=2022-01-01&t=638662859767047769&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=rnKsjwgvjyXC33C0Urgpe553w2LicmUQpUKOxb72FBb-FW4alxGDSnOw0sjPV-MQ7AXGoDPo0jRRsRu-T2TTzpmZDZFIZ6hax19NwdpkvVUyHJnPT57gmIyhgIda2O4rJ3Hp88G2YJ6lqtvkYHuGeJlGPofFRHPgvox-lBMYpSWRh7AxTXV1IgFxSFgUTJxLFyS970r1INjIeuBXSsMu1dO3mELh7A_Z_tMv82PJypUihF98yQ80v8_hv68AF1yPDv4u1N0pSaDmvXgK-0fR4P4i8AU354w777IBiR3K8ET8dwGmzYg6Nfa0YCJKcHBerSa7YjSZXpqU0Y6gySCcDw&h=NCQxDMaCHeqoHndRj4OvcLe0wh3d1gUdF1baQvjH4PQ + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - f7912909-64a4-4b25-82e3-6752df00fe79 + x-ms-ratelimit-remaining-subscription-deletes: + - '199' + x-ms-ratelimit-remaining-subscription-global-deletes: + - '2999' + x-msedge-ref: + - 'Ref A: 32FD521403834F4298B29AFBB0AF292D Ref B: MAA201060513017 Ref C: 2024-11-04T02:59:33Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall delete + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a87cb3e-9e51-420b-9b3d-151a07311755?api-version=2022-01-01&t=638662859766735113&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=i4mOzoqCbGMdr4Ge-eBTMr__pE94QY6wxOn_bTbZ-fyntfe-J_Ams4h_nxfzMiEAP9_o3Bld6okglV6y8auDZNdak8iUtjbU9QBurDvErsiZnWRtQQDNY7eB1ZpwxTm3c6fp0G9ii9LKpy6dzLGM4fdfJ_KSChwLQ78gGj9roiNCcoAzkSgOwlmTd140EKpUDGRT6_fpq5xQKdin25Cv-3R8w1K-a-WXVQIRElraLTQqC8RsbfNtJGu1qhPU7TAZd-3OF_mEdcpVqyDpllPQWm3h6B18e-1CfJLOrUVA78TcL6NCy9tgFC2tFedghM8ie_gAG-RNd42Ajg5bp438zg&h=6xzs8cdu1bsMIS2drg42W7B1ygBov5gNbMCPplKh7Ag + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 04 Nov 2024 02:59:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b174ad66-2bd1-468e-b691-fb0d15729724 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 5E076C8F82C44BD5881EAAE1CCBE6499 Ref B: MAA201060513017 Ref C: 2024-11-04T02:59:36Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall delete + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a87cb3e-9e51-420b-9b3d-151a07311755?api-version=2022-01-01&t=638662859766735113&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=i4mOzoqCbGMdr4Ge-eBTMr__pE94QY6wxOn_bTbZ-fyntfe-J_Ams4h_nxfzMiEAP9_o3Bld6okglV6y8auDZNdak8iUtjbU9QBurDvErsiZnWRtQQDNY7eB1ZpwxTm3c6fp0G9ii9LKpy6dzLGM4fdfJ_KSChwLQ78gGj9roiNCcoAzkSgOwlmTd140EKpUDGRT6_fpq5xQKdin25Cv-3R8w1K-a-WXVQIRElraLTQqC8RsbfNtJGu1qhPU7TAZd-3OF_mEdcpVqyDpllPQWm3h6B18e-1CfJLOrUVA78TcL6NCy9tgFC2tFedghM8ie_gAG-RNd42Ajg5bp438zg&h=6xzs8cdu1bsMIS2drg42W7B1ygBov5gNbMCPplKh7Ag + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 04 Nov 2024 02:59:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d5050faf-186f-47e9-968f-cf2add964e73 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: 11E5E235A6474AD2AAA42E046652FFEC Ref B: MAA201060513017 Ref C: 2024-11-04T02:59:47Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall delete + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a87cb3e-9e51-420b-9b3d-151a07311755?api-version=2022-01-01&t=638662859766735113&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=i4mOzoqCbGMdr4Ge-eBTMr__pE94QY6wxOn_bTbZ-fyntfe-J_Ams4h_nxfzMiEAP9_o3Bld6okglV6y8auDZNdak8iUtjbU9QBurDvErsiZnWRtQQDNY7eB1ZpwxTm3c6fp0G9ii9LKpy6dzLGM4fdfJ_KSChwLQ78gGj9roiNCcoAzkSgOwlmTd140EKpUDGRT6_fpq5xQKdin25Cv-3R8w1K-a-WXVQIRElraLTQqC8RsbfNtJGu1qhPU7TAZd-3OF_mEdcpVqyDpllPQWm3h6B18e-1CfJLOrUVA78TcL6NCy9tgFC2tFedghM8ie_gAG-RNd42Ajg5bp438zg&h=6xzs8cdu1bsMIS2drg42W7B1ygBov5gNbMCPplKh7Ag + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 04 Nov 2024 03:00:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 9ddc4062-a26d-406d-ba56-eb4c1a978ea3 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' + x-msedge-ref: + - 'Ref A: C9C65F5243E54E0AB4BE58A3ADE94B89 Ref B: MAA201060513017 Ref C: 2024-11-04T03:00:08Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall delete + Connection: + - keep-alive + ParameterSetName: + - -n -g User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cc8b5c52-c2e7-4bdb-a4da-018381d503cb?api-version=2022-01-01&t=638575012930392730&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=HBVy4d1w1buPxwg3lSJFdcUux6bNA0VWdi2Q17Ua8PpWuPrrt7hseVksU4r4hxM3jaoowIs-Rs1KSIfFAtgP6FF7ELx-Zv7IPFqn86y626j3BnhLNFeQ9bja1ouB4pKEHXYMcmjv7XM1XIJ-FQ5oQ69q2ngUkwLkAZmbmy4hEKI6lT0eYDoOOJ4fvJx_oWC7VtZTyUfL8I5SLiouIru_EhHw-FjKhJS39UapJnfZc0FQrXaPSjAiA864dzfg-Zozd7mSbFhO-GKVtra4YJPhlZMlBMNfGu20pHb0tu0dp2F9-dXs4EU4ZgvhGwO6M6jkYf0hC8r7ETFhLo313y7Pww&h=RhKTYpiLyDjwX1ZT_H0srpEd4pSILnc92utIakDhinU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a87cb3e-9e51-420b-9b3d-151a07311755?api-version=2022-01-01&t=638662859766735113&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=i4mOzoqCbGMdr4Ge-eBTMr__pE94QY6wxOn_bTbZ-fyntfe-J_Ams4h_nxfzMiEAP9_o3Bld6okglV6y8auDZNdak8iUtjbU9QBurDvErsiZnWRtQQDNY7eB1ZpwxTm3c6fp0G9ii9LKpy6dzLGM4fdfJ_KSChwLQ78gGj9roiNCcoAzkSgOwlmTd140EKpUDGRT6_fpq5xQKdin25Cv-3R8w1K-a-WXVQIRElraLTQqC8RsbfNtJGu1qhPU7TAZd-3OF_mEdcpVqyDpllPQWm3h6B18e-1CfJLOrUVA78TcL6NCy9tgFC2tFedghM8ie_gAG-RNd42Ajg5bp438zg&h=6xzs8cdu1bsMIS2drg42W7B1ygBov5gNbMCPplKh7Ag response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:54:26 GMT + - Mon, 04 Nov 2024 03:00:29 GMT expires: - '-1' pragma: @@ -1220,181 +1442,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4f1f5216-1cee-4a65-8a78-9c935f4ce3ae + - 36771aa5-4c9d-4068-b361-e9b17f97e975 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 3568B8232D944FA28C93CFFB33014771 Ref B: MRS211050618017 Ref C: 2024-07-25T10:54:26Z' + - 'Ref A: 372FB3C7017B431CAB1013B80D2265A8 Ref B: MAA201060513017 Ref C: 2024-11-04T03:00:29Z' status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --tier --vnet-name --conf-name --m-conf-name --m-public-ip - User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cc8b5c52-c2e7-4bdb-a4da-018381d503cb?api-version=2022-01-01&t=638575012930392730&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=HBVy4d1w1buPxwg3lSJFdcUux6bNA0VWdi2Q17Ua8PpWuPrrt7hseVksU4r4hxM3jaoowIs-Rs1KSIfFAtgP6FF7ELx-Zv7IPFqn86y626j3BnhLNFeQ9bja1ouB4pKEHXYMcmjv7XM1XIJ-FQ5oQ69q2ngUkwLkAZmbmy4hEKI6lT0eYDoOOJ4fvJx_oWC7VtZTyUfL8I5SLiouIru_EhHw-FjKhJS39UapJnfZc0FQrXaPSjAiA864dzfg-Zozd7mSbFhO-GKVtra4YJPhlZMlBMNfGu20pHb0tu0dp2F9-dXs4EU4ZgvhGwO6M6jkYf0hC8r7ETFhLo313y7Pww&h=RhKTYpiLyDjwX1ZT_H0srpEd4pSILnc92utIakDhinU - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Jul 2024 10:56:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - db42ed0f-4bc7-45ad-b91b-779b759a2c58 - x-msedge-ref: - - 'Ref A: D84EEA77DAAF4718B22E8BEE50747572 Ref B: MRS211050618035 Ref C: 2024-07-25T10:56:06Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall create - Connection: - - keep-alive - ParameterSetName: - - -n -g --sku --tier --vnet-name --conf-name --m-conf-name --m-public-ip - User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002?api-version=2022-01-01 - response: - body: - string: "{\r\n \"name\": \"firewall-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002\",\r\n - \ \"etag\": \"W/\\\"f110dbf3-8689-4c39-9cc3-9a06db69e925\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": - \"AZFW_VNet\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"threatIntelMode\": - \"Alert\",\r\n \"additionalProperties\": {},\r\n \"managementIpConfiguration\": - {\r\n \"name\": \"ipconfig-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002/azureFirewallIpConfigurations/ipconfig-000005\",\r\n - \ \"etag\": \"W/\\\"f110dbf3-8689-4c39-9cc3-9a06db69e925\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": - \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/publicIPAddresses/public-ip-000006\"\r\n - \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallManagementSubnet\"\r\n - \ }\r\n }\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n - \ \"name\": \"ipconfig-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002/azureFirewallIpConfigurations/ipconfig-000004\",\r\n - \ \"etag\": \"W/\\\"f110dbf3-8689-4c39-9cc3-9a06db69e925\\\"\",\r\n - \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": - \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualNetworks/vnet-000003/subnets/AzureFirewallSubnet\"\r\n - \ }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": - [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": - []\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2560' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Jul 2024 10:56:07 GMT - etag: - - W/"f110dbf3-8689-4c39-9cc3-9a06db69e925" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 876e719a-05ab-4db4-86e0-34fbfeadd0ab - x-msedge-ref: - - 'Ref A: 659D34AC33C44C8B99EA5F37BCF3F8BE Ref B: MRS211050618035 Ref C: 2024-07-25T10:56:06Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002?api-version=2022-01-01 - response: - body: - string: '' - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7b15a8d1-2a6f-4209-85fb-8c17a47aa87c?api-version=2022-01-01&t=638575017712112804&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=lh1DTJfGbA_9i_nldSuy1MST3SYTmwwRSjRMyRDESVntyNV2KY2x9YyO6od1GDp5bhrfwBU_DV9zKXpCG58Jya2A9IjZlR98_47QuQDDLy9DcgrUCyw0Jo3jgP8gT59QGCeTH-YTpG8dos5d8hskG90vSUmpVARUzzYSL2wmzZg62D1M0PCzKyA0MtxOQagocQ9MdjekD6xyuKJMHLQyYL-OJgLkcdksXHOO42fneKjwollEIu8DZuoRoxbq7KicSdDxGew4RkQkErou27tgmLqqk2MXmy2Fnk62q1ZFkjZ_rOAGdBX9-yBcOn2ux0etTxMI4gmJzXc96I6MPVCFPg&h=ZlDGI9evSBajYxmTSkOiAVguIsK4BlXd4eBcQMaFt3g - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 25 Jul 2024 10:56:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/7b15a8d1-2a6f-4209-85fb-8c17a47aa87c?api-version=2022-01-01&t=638575017712269055&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=fq-ywECwNIXfluj8trGXtqW_Je_AA0zAxItgQ_3JZm-btBaKeoCYU0S49PHnG_0bo53LH83cWMgZxW8DEni3ng0LqBFBbBpqq3ILg9bVrycta0xTFdSRAX_zSbid3_9nlk2trF8QQz3pkoewcPZrQO3DXAmVSu-e5coy15M-L4nWLfcvh6R4cDYe2S0__NAf4ccMuZtF708NOBDeseMVN9VRkHUD1c64QhekQzw3LSxalrfZYRmguEKcJ5YFH_jGZgSdwj7vodjalG88pKZFhOLsGEGlt0EuUq5qMH5Q1JLAAYRGsvKYA-ljkpPby1mev67e4CiwaSDGdV79ldEyZw&h=LJZdzwsgzzVUDIaB_Y_0KI0zMfAnCGU9ZwKr85tp2as - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - b1f8570d-f429-4129-bc02-c1ae7e024758 - x-ms-ratelimit-remaining-subscription-deletes: - - '14995' - x-msedge-ref: - - 'Ref A: 55EBAFC339B6447EB31CEC8F013B511E Ref B: MRS211050315033 Ref C: 2024-07-25T10:56:08Z' - status: - code: 202 - message: Accepted - request: body: null headers: @@ -1409,21 +1464,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7b15a8d1-2a6f-4209-85fb-8c17a47aa87c?api-version=2022-01-01&t=638575017712112804&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=lh1DTJfGbA_9i_nldSuy1MST3SYTmwwRSjRMyRDESVntyNV2KY2x9YyO6od1GDp5bhrfwBU_DV9zKXpCG58Jya2A9IjZlR98_47QuQDDLy9DcgrUCyw0Jo3jgP8gT59QGCeTH-YTpG8dos5d8hskG90vSUmpVARUzzYSL2wmzZg62D1M0PCzKyA0MtxOQagocQ9MdjekD6xyuKJMHLQyYL-OJgLkcdksXHOO42fneKjwollEIu8DZuoRoxbq7KicSdDxGew4RkQkErou27tgmLqqk2MXmy2Fnk62q1ZFkjZ_rOAGdBX9-yBcOn2ux0etTxMI4gmJzXc96I6MPVCFPg&h=ZlDGI9evSBajYxmTSkOiAVguIsK4BlXd4eBcQMaFt3g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a87cb3e-9e51-420b-9b3d-151a07311755?api-version=2022-01-01&t=638662859766735113&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=i4mOzoqCbGMdr4Ge-eBTMr__pE94QY6wxOn_bTbZ-fyntfe-J_Ams4h_nxfzMiEAP9_o3Bld6okglV6y8auDZNdak8iUtjbU9QBurDvErsiZnWRtQQDNY7eB1ZpwxTm3c6fp0G9ii9LKpy6dzLGM4fdfJ_KSChwLQ78gGj9roiNCcoAzkSgOwlmTd140EKpUDGRT6_fpq5xQKdin25Cv-3R8w1K-a-WXVQIRElraLTQqC8RsbfNtJGu1qhPU7TAZd-3OF_mEdcpVqyDpllPQWm3h6B18e-1CfJLOrUVA78TcL6NCy9tgFC2tFedghM8ie_gAG-RNd42Ajg5bp438zg&h=6xzs8cdu1bsMIS2drg42W7B1ygBov5gNbMCPplKh7Ag response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:56:11 GMT + - Mon, 04 Nov 2024 03:01:10 GMT expires: - '-1' pragma: @@ -1435,9 +1490,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f222d298-6950-46df-a31b-4383097e9f7a + - dc501551-0fca-4905-8494-12a309803d74 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 3D3370D535574C9BAE4B8F53A80BEF0F Ref B: MRS211050315033 Ref C: 2024-07-25T10:56:11Z' + - 'Ref A: ABD1C0EF94AC4953ADAB1012029FFBBF Ref B: MAA201060513017 Ref C: 2024-11-04T03:01:09Z' status: code: 200 message: OK @@ -1455,21 +1512,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7b15a8d1-2a6f-4209-85fb-8c17a47aa87c?api-version=2022-01-01&t=638575017712112804&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=lh1DTJfGbA_9i_nldSuy1MST3SYTmwwRSjRMyRDESVntyNV2KY2x9YyO6od1GDp5bhrfwBU_DV9zKXpCG58Jya2A9IjZlR98_47QuQDDLy9DcgrUCyw0Jo3jgP8gT59QGCeTH-YTpG8dos5d8hskG90vSUmpVARUzzYSL2wmzZg62D1M0PCzKyA0MtxOQagocQ9MdjekD6xyuKJMHLQyYL-OJgLkcdksXHOO42fneKjwollEIu8DZuoRoxbq7KicSdDxGew4RkQkErou27tgmLqqk2MXmy2Fnk62q1ZFkjZ_rOAGdBX9-yBcOn2ux0etTxMI4gmJzXc96I6MPVCFPg&h=ZlDGI9evSBajYxmTSkOiAVguIsK4BlXd4eBcQMaFt3g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a87cb3e-9e51-420b-9b3d-151a07311755?api-version=2022-01-01&t=638662859766735113&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=i4mOzoqCbGMdr4Ge-eBTMr__pE94QY6wxOn_bTbZ-fyntfe-J_Ams4h_nxfzMiEAP9_o3Bld6okglV6y8auDZNdak8iUtjbU9QBurDvErsiZnWRtQQDNY7eB1ZpwxTm3c6fp0G9ii9LKpy6dzLGM4fdfJ_KSChwLQ78gGj9roiNCcoAzkSgOwlmTd140EKpUDGRT6_fpq5xQKdin25Cv-3R8w1K-a-WXVQIRElraLTQqC8RsbfNtJGu1qhPU7TAZd-3OF_mEdcpVqyDpllPQWm3h6B18e-1CfJLOrUVA78TcL6NCy9tgFC2tFedghM8ie_gAG-RNd42Ajg5bp438zg&h=6xzs8cdu1bsMIS2drg42W7B1ygBov5gNbMCPplKh7Ag response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:56:21 GMT + - Mon, 04 Nov 2024 03:01:50 GMT expires: - '-1' pragma: @@ -1481,9 +1538,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 50ebfc13-9a74-456c-84b8-3d5d1e67a2a1 + - 7685a753-8202-4b0d-806e-c664764449f1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 2EE41205CEF44C3B9FE9BC5939BBB25D Ref B: MRS211050315033 Ref C: 2024-07-25T10:56:21Z' + - 'Ref A: DB70B9AA7BB54463921C52B996DB9BA1 Ref B: MAA201060513017 Ref C: 2024-11-04T03:01:50Z' status: code: 200 message: OK @@ -1501,21 +1560,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7b15a8d1-2a6f-4209-85fb-8c17a47aa87c?api-version=2022-01-01&t=638575017712112804&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=lh1DTJfGbA_9i_nldSuy1MST3SYTmwwRSjRMyRDESVntyNV2KY2x9YyO6od1GDp5bhrfwBU_DV9zKXpCG58Jya2A9IjZlR98_47QuQDDLy9DcgrUCyw0Jo3jgP8gT59QGCeTH-YTpG8dos5d8hskG90vSUmpVARUzzYSL2wmzZg62D1M0PCzKyA0MtxOQagocQ9MdjekD6xyuKJMHLQyYL-OJgLkcdksXHOO42fneKjwollEIu8DZuoRoxbq7KicSdDxGew4RkQkErou27tgmLqqk2MXmy2Fnk62q1ZFkjZ_rOAGdBX9-yBcOn2ux0etTxMI4gmJzXc96I6MPVCFPg&h=ZlDGI9evSBajYxmTSkOiAVguIsK4BlXd4eBcQMaFt3g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a87cb3e-9e51-420b-9b3d-151a07311755?api-version=2022-01-01&t=638662859766735113&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=i4mOzoqCbGMdr4Ge-eBTMr__pE94QY6wxOn_bTbZ-fyntfe-J_Ams4h_nxfzMiEAP9_o3Bld6okglV6y8auDZNdak8iUtjbU9QBurDvErsiZnWRtQQDNY7eB1ZpwxTm3c6fp0G9ii9LKpy6dzLGM4fdfJ_KSChwLQ78gGj9roiNCcoAzkSgOwlmTd140EKpUDGRT6_fpq5xQKdin25Cv-3R8w1K-a-WXVQIRElraLTQqC8RsbfNtJGu1qhPU7TAZd-3OF_mEdcpVqyDpllPQWm3h6B18e-1CfJLOrUVA78TcL6NCy9tgFC2tFedghM8ie_gAG-RNd42Ajg5bp438zg&h=6xzs8cdu1bsMIS2drg42W7B1ygBov5gNbMCPplKh7Ag response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:56:42 GMT + - Mon, 04 Nov 2024 03:03:11 GMT expires: - '-1' pragma: @@ -1527,9 +1586,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0b781639-09a8-4b63-8368-32cca526407d + - f7cef4d2-5d0f-49b5-ba9b-5a08debe24e3 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 34005D1729534A20B7CAFD21356589B5 Ref B: MRS211050315033 Ref C: 2024-07-25T10:56:42Z' + - 'Ref A: 998AD01A40824FDB9E5939F5EDC6E894 Ref B: MAA201060516047 Ref C: 2024-11-04T03:03:11Z' status: code: 200 message: OK @@ -1547,21 +1608,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7b15a8d1-2a6f-4209-85fb-8c17a47aa87c?api-version=2022-01-01&t=638575017712112804&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=lh1DTJfGbA_9i_nldSuy1MST3SYTmwwRSjRMyRDESVntyNV2KY2x9YyO6od1GDp5bhrfwBU_DV9zKXpCG58Jya2A9IjZlR98_47QuQDDLy9DcgrUCyw0Jo3jgP8gT59QGCeTH-YTpG8dos5d8hskG90vSUmpVARUzzYSL2wmzZg62D1M0PCzKyA0MtxOQagocQ9MdjekD6xyuKJMHLQyYL-OJgLkcdksXHOO42fneKjwollEIu8DZuoRoxbq7KicSdDxGew4RkQkErou27tgmLqqk2MXmy2Fnk62q1ZFkjZ_rOAGdBX9-yBcOn2ux0etTxMI4gmJzXc96I6MPVCFPg&h=ZlDGI9evSBajYxmTSkOiAVguIsK4BlXd4eBcQMaFt3g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a87cb3e-9e51-420b-9b3d-151a07311755?api-version=2022-01-01&t=638662859766735113&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=i4mOzoqCbGMdr4Ge-eBTMr__pE94QY6wxOn_bTbZ-fyntfe-J_Ams4h_nxfzMiEAP9_o3Bld6okglV6y8auDZNdak8iUtjbU9QBurDvErsiZnWRtQQDNY7eB1ZpwxTm3c6fp0G9ii9LKpy6dzLGM4fdfJ_KSChwLQ78gGj9roiNCcoAzkSgOwlmTd140EKpUDGRT6_fpq5xQKdin25Cv-3R8w1K-a-WXVQIRElraLTQqC8RsbfNtJGu1qhPU7TAZd-3OF_mEdcpVqyDpllPQWm3h6B18e-1CfJLOrUVA78TcL6NCy9tgFC2tFedghM8ie_gAG-RNd42Ajg5bp438zg&h=6xzs8cdu1bsMIS2drg42W7B1ygBov5gNbMCPplKh7Ag response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 10:57:02 GMT + - Mon, 04 Nov 2024 03:05:52 GMT expires: - '-1' pragma: @@ -1573,9 +1634,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8f78a299-a8df-429e-9a38-b2aeef6db678 + - 132565cd-ab94-44f0-8ebf-dc6f0c72ac70 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 9F5C7CE244244744AB7B0D1307EE14E2 Ref B: MRS211050315033 Ref C: 2024-07-25T10:57:02Z' + - 'Ref A: D82497C701394EB8865EE5D516EFEC93 Ref B: MAA201060515049 Ref C: 2024-11-04T03:05:52Z' status: code: 200 message: OK @@ -1593,159 +1656,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7b15a8d1-2a6f-4209-85fb-8c17a47aa87c?api-version=2022-01-01&t=638575017712112804&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=lh1DTJfGbA_9i_nldSuy1MST3SYTmwwRSjRMyRDESVntyNV2KY2x9YyO6od1GDp5bhrfwBU_DV9zKXpCG58Jya2A9IjZlR98_47QuQDDLy9DcgrUCyw0Jo3jgP8gT59QGCeTH-YTpG8dos5d8hskG90vSUmpVARUzzYSL2wmzZg62D1M0PCzKyA0MtxOQagocQ9MdjekD6xyuKJMHLQyYL-OJgLkcdksXHOO42fneKjwollEIu8DZuoRoxbq7KicSdDxGew4RkQkErou27tgmLqqk2MXmy2Fnk62q1ZFkjZ_rOAGdBX9-yBcOn2ux0etTxMI4gmJzXc96I6MPVCFPg&h=ZlDGI9evSBajYxmTSkOiAVguIsK4BlXd4eBcQMaFt3g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a87cb3e-9e51-420b-9b3d-151a07311755?api-version=2022-01-01&t=638662859766735113&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=i4mOzoqCbGMdr4Ge-eBTMr__pE94QY6wxOn_bTbZ-fyntfe-J_Ams4h_nxfzMiEAP9_o3Bld6okglV6y8auDZNdak8iUtjbU9QBurDvErsiZnWRtQQDNY7eB1ZpwxTm3c6fp0G9ii9LKpy6dzLGM4fdfJ_KSChwLQ78gGj9roiNCcoAzkSgOwlmTd140EKpUDGRT6_fpq5xQKdin25Cv-3R8w1K-a-WXVQIRElraLTQqC8RsbfNtJGu1qhPU7TAZd-3OF_mEdcpVqyDpllPQWm3h6B18e-1CfJLOrUVA78TcL6NCy9tgFC2tFedghM8ie_gAG-RNd42Ajg5bp438zg&h=6xzs8cdu1bsMIS2drg42W7B1ygBov5gNbMCPplKh7Ag response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Jul 2024 10:57:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - bf9d2565-0695-430c-872e-c31c5916e8d7 - x-msedge-ref: - - 'Ref A: 8057059B88874A86A54313612A6BE8A7 Ref B: MRS211050315033 Ref C: 2024-07-25T10:57:42Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall delete - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7b15a8d1-2a6f-4209-85fb-8c17a47aa87c?api-version=2022-01-01&t=638575017712112804&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=lh1DTJfGbA_9i_nldSuy1MST3SYTmwwRSjRMyRDESVntyNV2KY2x9YyO6od1GDp5bhrfwBU_DV9zKXpCG58Jya2A9IjZlR98_47QuQDDLy9DcgrUCyw0Jo3jgP8gT59QGCeTH-YTpG8dos5d8hskG90vSUmpVARUzzYSL2wmzZg62D1M0PCzKyA0MtxOQagocQ9MdjekD6xyuKJMHLQyYL-OJgLkcdksXHOO42fneKjwollEIu8DZuoRoxbq7KicSdDxGew4RkQkErou27tgmLqqk2MXmy2Fnk62q1ZFkjZ_rOAGdBX9-yBcOn2ux0etTxMI4gmJzXc96I6MPVCFPg&h=ZlDGI9evSBajYxmTSkOiAVguIsK4BlXd4eBcQMaFt3g - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Jul 2024 10:58:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - b6df811f-c173-4f79-b82d-108d861e0892 - x-msedge-ref: - - 'Ref A: 87EBF8DE354B449A9A92FB21BFCB9621 Ref B: MRS211050315033 Ref C: 2024-07-25T10:58:23Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall delete - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7b15a8d1-2a6f-4209-85fb-8c17a47aa87c?api-version=2022-01-01&t=638575017712112804&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=lh1DTJfGbA_9i_nldSuy1MST3SYTmwwRSjRMyRDESVntyNV2KY2x9YyO6od1GDp5bhrfwBU_DV9zKXpCG58Jya2A9IjZlR98_47QuQDDLy9DcgrUCyw0Jo3jgP8gT59QGCeTH-YTpG8dos5d8hskG90vSUmpVARUzzYSL2wmzZg62D1M0PCzKyA0MtxOQagocQ9MdjekD6xyuKJMHLQyYL-OJgLkcdksXHOO42fneKjwollEIu8DZuoRoxbq7KicSdDxGew4RkQkErou27tgmLqqk2MXmy2Fnk62q1ZFkjZ_rOAGdBX9-yBcOn2ux0etTxMI4gmJzXc96I6MPVCFPg&h=ZlDGI9evSBajYxmTSkOiAVguIsK4BlXd4eBcQMaFt3g - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Jul 2024 10:59:43 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 2bda8adb-a707-4683-80e6-9ec630e906e0 - x-msedge-ref: - - 'Ref A: C9B88BD8DE4547E697E3ECF17423D042 Ref B: MRS211050315037 Ref C: 2024-07-25T10:59:43Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall delete - Connection: - - keep-alive - ParameterSetName: - - -n -g - User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7b15a8d1-2a6f-4209-85fb-8c17a47aa87c?api-version=2022-01-01&t=638575017712112804&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=lh1DTJfGbA_9i_nldSuy1MST3SYTmwwRSjRMyRDESVntyNV2KY2x9YyO6od1GDp5bhrfwBU_DV9zKXpCG58Jya2A9IjZlR98_47QuQDDLy9DcgrUCyw0Jo3jgP8gT59QGCeTH-YTpG8dos5d8hskG90vSUmpVARUzzYSL2wmzZg62D1M0PCzKyA0MtxOQagocQ9MdjekD6xyuKJMHLQyYL-OJgLkcdksXHOO42fneKjwollEIu8DZuoRoxbq7KicSdDxGew4RkQkErou27tgmLqqk2MXmy2Fnk62q1ZFkjZ_rOAGdBX9-yBcOn2ux0etTxMI4gmJzXc96I6MPVCFPg&h=ZlDGI9evSBajYxmTSkOiAVguIsK4BlXd4eBcQMaFt3g - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:02:24 GMT + - Mon, 04 Nov 2024 03:07:34 GMT expires: - '-1' pragma: @@ -1757,9 +1682,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4c3b0b97-2d71-4483-921a-9f659ccac52f + - aa79ad7c-09a4-4b91-b7b3-d1e25808de5d + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: E8E3ED0F6B1D444DAE9CCF171C7E6DC4 Ref B: MRS211050313027 Ref C: 2024-07-25T11:02:24Z' + - 'Ref A: ECB0C51C588147B08F70D344450D536F Ref B: MAA201060516031 Ref C: 2024-11-04T03:07:34Z' status: code: 200 message: OK @@ -1777,9 +1704,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/7b15a8d1-2a6f-4209-85fb-8c17a47aa87c?api-version=2022-01-01&t=638575017712269055&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=fq-ywECwNIXfluj8trGXtqW_Je_AA0zAxItgQ_3JZm-btBaKeoCYU0S49PHnG_0bo53LH83cWMgZxW8DEni3ng0LqBFBbBpqq3ILg9bVrycta0xTFdSRAX_zSbid3_9nlk2trF8QQz3pkoewcPZrQO3DXAmVSu-e5coy15M-L4nWLfcvh6R4cDYe2S0__NAf4ccMuZtF708NOBDeseMVN9VRkHUD1c64QhekQzw3LSxalrfZYRmguEKcJ5YFH_jGZgSdwj7vodjalG88pKZFhOLsGEGlt0EuUq5qMH5Q1JLAAYRGsvKYA-ljkpPby1mev67e4CiwaSDGdV79ldEyZw&h=LJZdzwsgzzVUDIaB_Y_0KI0zMfAnCGU9ZwKr85tp2as + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/5a87cb3e-9e51-420b-9b3d-151a07311755?api-version=2022-01-01&t=638662859767047769&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=rnKsjwgvjyXC33C0Urgpe553w2LicmUQpUKOxb72FBb-FW4alxGDSnOw0sjPV-MQ7AXGoDPo0jRRsRu-T2TTzpmZDZFIZ6hax19NwdpkvVUyHJnPT57gmIyhgIda2O4rJ3Hp88G2YJ6lqtvkYHuGeJlGPofFRHPgvox-lBMYpSWRh7AxTXV1IgFxSFgUTJxLFyS970r1INjIeuBXSsMu1dO3mELh7A_Z_tMv82PJypUihF98yQ80v8_hv68AF1yPDv4u1N0pSaDmvXgK-0fR4P4i8AU354w777IBiR3K8ET8dwGmzYg6Nfa0YCJKcHBerSa7YjSZXpqU0Y6gySCcDw&h=NCQxDMaCHeqoHndRj4OvcLe0wh3d1gUdF1baQvjH4PQ response: body: string: '' @@ -1787,17 +1714,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7b15a8d1-2a6f-4209-85fb-8c17a47aa87c?api-version=2022-01-01&t=638575021454390770&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=vMdQrCjEw90UAYdM9Oiw_T15tfm2tO0MrRoCVoJ341Jy9B4e35MzgBIJrQi9Vk9aK77DNr7aleRpFC3plIG2fYzvlPBiqtBych-hcNeQSlsYD_uXJTKYSqpN0Es_juNGBhrSAkXxJ7vnZ0HG-7wnhEFCfsoZPYUNI3LUMT0xApbuCjDTH3wrOYtuTHJ7lT21J9TPS98FYB3jGL-eLQ-G9pC7Q74-rOCiw0aUOq69e_S9aXCrbwLo76orF9d1az0AePFpXiqqcm5BORAFHWlbEiTGxEjCScMXW3-lkSFJKiez7hH5OmO_Df_EyC8agydKt6kNAIvOa2X-m365JgECOw&h=RtbTt1g_mr2Kp2OQVgqMkzRW15XKZn1KNzNc_MivZbA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5a87cb3e-9e51-420b-9b3d-151a07311755?api-version=2022-01-01&t=638662864552730270&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=2Njf15jveu9NPL-tXDQIIvI0jmdx_oSWfR4iHXlCgVWY0gip3OFCoELjJXY-9pe35LwmJSXtJr3CE8CLZ2UcEoR4IRiIyLnFQJ2mz5GmTxNlpqyQ7yWUMbZFV5zrXcHTdZki-Xvy6XSb-LH3StGVwXhB5FJr-PQOgEghB8WTgCpqowszbWhkfSX3MfES2YDm2XatlSVBzfd7eZyzcDpBdi6SZhyCgkIki-2yeIKAmXq7AKpPVjftpv18VbkwebPFBicd_W67Xd5yerEFBlqEbj47h0-LvprIdN5okP9kGQVP7jsZnCMzesCxK-iZ0LUAazo6eB2yQobu3ep6Gx74yQ&h=eb8Vq2MRpPj5wfNIhgGIj_FoLdX580TrvcGxdS1pTu0 cache-control: - no-cache content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:02:24 GMT + - Mon, 04 Nov 2024 03:07:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/7b15a8d1-2a6f-4209-85fb-8c17a47aa87c?api-version=2022-01-01&t=638575021454547024&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=ZaM6Zzlm6uzy9BXtu-twaqn9ybjEabIK3hC-u5kPYM28y2C_5c3Gss_1AuKcTmIaGwzmdWNj5Q5o0P7JYL0dL08D2RJQWGA_lxcZypzGsgsq258EfLygNwNlq28KmgjCA97M-ofa3zS6UxgIOTI618BB47_YL0tut74PWbTh5OOBT9cjOU2CFv0cWL9WA0n22VoFJ4-an0MhSSyYAk5f2pXuaYobgy-9-D8kUJTxIOqVzJVPAs8Vi9BlsbEzjNmsKIarwlSPVhSv6SEMSGWqZzVcLBWxkWy5LXQCdZ8JUumq1Qjc7UFCPk-3Zl3bG3SiGE72VJBRWIV48Jpa0MbeeA&h=TvOfNIb7iOf9_jVr2e0Y3FhGdFymys5Mw8IXq9NLrUs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/5a87cb3e-9e51-420b-9b3d-151a07311755?api-version=2022-01-01&t=638662864552730270&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=DqtZIG22lceiekMp7ABf02OF5TjfsFOP4Fzgldj-nl8c3mPy_-3Y96uLJ3qiwP-ZvFpryT1VBW7lnQcD7PmrM7tOebDVx2tEBqsUAecla-5j11d5ncuTEayOFj0PH6HHzRBm4BTyHs0gKcqxCoZOqT3osMiRwAm21KHtTbaSIaeksDh9_AZJdpAaSuuaQgkLW1gYGAfe3MUz1FcvShOrlTiUr5C6ks-xDHYonBVNVyRV-EDSNrLefIoVR5g9OcOI6-b3E621RUtRtq5YaYS0f-gY_k_km-WkrhptylRoftoKwgH2FYOgsLOjqawSduNBr-DM8IGoHTsEdyw4PQtrCw&h=u82gvAWeZ4MhkHIgToED-pba3XqvwTP-KTVENkTfjEg pragma: - no-cache strict-transport-security: @@ -1807,9 +1734,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b1f8570d-f429-4129-bc02-c1ae7e024758 + - f7912909-64a4-4b25-82e3-6752df00fe79 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: B17E11C91F374B20831B5ACD547B7739 Ref B: MRS211050313027 Ref C: 2024-07-25T11:02:24Z' + - 'Ref A: 33B4F488508641D29C86D29089414381 Ref B: MAA201060516031 Ref C: 2024-11-04T03:07:34Z' status: code: 204 message: No Content @@ -1837,15 +1766,15 @@ interactions: content-length: - '0' date: - - Thu, 25 Jul 2024 11:02:25 GMT + - Mon, 04 Nov 2024 03:07:36 GMT expires: - - Thu, 25 Jul 2024 11:02:25 GMT + - Mon, 04 Nov 2024 03:07:36 GMT location: - https://azcliextensionsync.blob.core.windows.net/index1/index.json pragma: - no-cache request-context: - - appId=cid-v1:b47e5e27-bf85-45ba-a97c-0377ce0e5779 + - appId=cid-v1:d94c0f68-64bf-4036-8409-a0e761bb7ee1 server: - Kestrel strict-transport-security: @@ -2158,33 +2087,6 @@ interactions: \"ad\",\n \"summary\": \"Microsoft Azure Command-Line Tools DomainServicesResourceProvider Extension\",\n \"version\": \"0.1.0\"\n },\n \"sha256Digest\": \"61df234e10759e9916c1d447ab02b82637de10fd97c31a17252e1f5183853883\"\n - \ }\n ],\n \"adp\": [\n {\n \"downloadUrl\": - \"https://azcliprod.blob.core.windows.net/cli-extensions/adp-0.1.0-py3-none-any.whl\",\n - \ \"filename\": \"adp-0.1.0-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isExperimental\": true,\n \"azext.minCliCoreVersion\": - \"2.40.0\",\n \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.7\",\n \"Programming Language :: Python - :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/adp\"\n - \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"adp\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Adp Extension.\",\n \"version\": \"0.1.0\"\n },\n - \ \"sha256Digest\": \"fd64519832f4fd314431f87176507e10249b8d165537f81d05c9ea5185ae84ec\"\n \ }\n ],\n \"aem\": [\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/aem-0.1.1-py2.py3-none-any.whl\",\n \ \"filename\": \"aem-0.1.1-py2.py3-none-any.whl\",\n \"metadata\": @@ -8792,6 +8694,396 @@ interactions: \"aks-preview\",\n \"summary\": \"Provides a preview for upcoming AKS features\",\n \"version\": \"7.0.0b2\"\n },\n \ \"sha256Digest\": \"f2f8aba2abf4252b3e77c2d4245320c025e111d5374bb6c1a57631cd72c42e39\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-7.0.0b3-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-7.0.0b3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"7.0.0b3\"\n },\n + \ \"sha256Digest\": \"04067e9050de7b3560030613232bf51d9ada4b91885285954afe77b3e40ad90a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-7.0.0b4-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-7.0.0b4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"7.0.0b4\"\n },\n + \ \"sha256Digest\": \"1a8b9f22e0c36242a575434e5b25ed43e82fd9db5ad7f8b3d187b75ec4e4f879\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-7.0.0b5-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-7.0.0b5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"7.0.0b5\"\n },\n + \ \"sha256Digest\": \"9e46b526cf60b24af2a14ddba903f4695b1e3bf0eda9f0445438e8ae91079b52\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-7.0.0b6-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-7.0.0b6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"7.0.0b6\"\n },\n + \ \"sha256Digest\": \"268457ea6463d03775caa822b4b7a70749c503b47cb2aa9c898e1186cfb423f6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-7.0.0b7-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-7.0.0b7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"7.0.0b7\"\n },\n + \ \"sha256Digest\": \"4b554bfbdf16f0ffc5619ca627e686efd7bee0607da4c2ede39fd76cd1f1f9f8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-7.0.0b8-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-7.0.0b8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"7.0.0b8\"\n },\n + \ \"sha256Digest\": \"d0adea44ecf78c5b49d7e921fb8cb35fd5aa5f83ae7772f9b1d32b34c618eccd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-8.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-8.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"8.0.0b1\"\n },\n + \ \"sha256Digest\": \"500a670e0f4cd8ef9399a0928fbcef6440a68cdc2978c62db911d1585f351b75\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-9.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-9.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"9.0.0b1\"\n },\n + \ \"sha256Digest\": \"10c39ae052f5d76c4cf7584a404f6acac732af40dd58726365fdaeceb4eb2390\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-9.0.0b2-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-9.0.0b2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"9.0.0b2\"\n },\n + \ \"sha256Digest\": \"ad108c241c92d4228b8da42222b614eae665adea268e8a868b9d8a38ccddeab5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-9.0.0b3-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-9.0.0b3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"9.0.0b3\"\n },\n + \ \"sha256Digest\": \"810d53ed0e6743acb4d886bdb852a000e430f61cbbc0374523f07d638fdc77f1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-9.0.0b4-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-9.0.0b4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"9.0.0b4\"\n },\n + \ \"sha256Digest\": \"5d5ce9940eee897e0af79bdc5631debee33fe80a43385aa81b45257e15eb565f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-9.0.0b5-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-9.0.0b5-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"9.0.0b5\"\n },\n + \ \"sha256Digest\": \"891fc0b5b47120e4f229bb0e75aae8b18ec833a5f8661c29da11f18c4e562ba6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-9.0.0b6-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-9.0.0b6-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"9.0.0b6\"\n },\n + \ \"sha256Digest\": \"36a215d3a2fdb54b8a977ecab330c3f73c32746368c977364e11fd5cb8e089a4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-9.0.0b7-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-9.0.0b7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"9.0.0b7\"\n },\n + \ \"sha256Digest\": \"2939aadd8022141b95d83dae59f43f55b6385236c8bf6bb0ae94c7b5f3eb6591\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-9.0.0b8-py2.py3-none-any.whl\",\n + \ \"filename\": \"aks_preview-9.0.0b8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/aks-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"aks-preview\",\n \"summary\": \"Provides a preview for + upcoming AKS features\",\n \"version\": \"9.0.0b8\"\n },\n + \ \"sha256Digest\": \"09844ae02ba0d58f9368ae3738f3d4311f5ca721edcc1cf70886fcf8a80cbfb8\"\n \ }\n ],\n \"aksarc\": [\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/aksarc-1.0.0b1-py3-none-any.whl\",\n \ \"filename\": \"aksarc-1.0.0b1-py3-none-any.whl\",\n \"metadata\": @@ -9344,9 +9636,35 @@ interactions: \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"alertsmanagement\",\n \"summary\": \"Microsoft Azure Command-Line Tools AlertsManagementClient Extension\",\n \"version\": - \"0.2.2\"\n },\n \"sha256Digest\": \"2221f34f874532e4c5324f821a40a49f6cecca70b72e594144e6baf60b08508e\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.2.3-py3-none-any.whl\",\n - \ \"filename\": \"alertsmanagement-0.2.3-py3-none-any.whl\",\n + \"0.2.2\"\n },\n \"sha256Digest\": \"2221f34f874532e4c5324f821a40a49f6cecca70b72e594144e6baf60b08508e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alertsmanagement-0.2.3-py3-none-any.whl\",\n + \ \"filename\": \"alertsmanagement-0.2.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/alertsmanagement\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"alertsmanagement\",\n \"summary\": \"Microsoft Azure + Command-Line Tools AlertsManagementClient Extension\",\n \"version\": + \"0.2.3\"\n },\n \"sha256Digest\": \"b45a5752924ab1205ff5862f03a4a465eccb4dd8e79900023498d674aa68665b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/alertsmanagement-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"alertsmanagement-1.0.0b1-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -9370,7 +9688,7 @@ interactions: \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"alertsmanagement\",\n \"summary\": \"Microsoft Azure Command-Line Tools AlertsManagementClient Extension\",\n \"version\": - \"0.2.3\"\n },\n \"sha256Digest\": \"b45a5752924ab1205ff5862f03a4a465eccb4dd8e79900023498d674aa68665b\"\n + \"1.0.0b1\"\n },\n \"sha256Digest\": \"e1e15aeff1ab9b25fb820b914e602ce84a7d00e5382eb07d413f1492d90b09d1\"\n \ }\n ],\n \"alias\": [\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/alias-0.5.2-py2.py3-none-any.whl\",\n \ \"filename\": \"alias-0.5.2-py2.py3-none-any.whl\",\n \"metadata\": @@ -9952,71 +10270,279 @@ interactions: \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"amg\",\n \"summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\",\n \"version\": - \"1.2.10\"\n },\n \"sha256Digest\": \"a19d60a2e1d3562cf9434bb7817b85f8ccca1472c6622921b83db9e1a85a98b7\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.0-py3-none-any.whl\",\n - \ \"filename\": \"amg-1.3.0-py3-none-any.whl\",\n \"metadata\": + \"1.2.10\"\n },\n \"sha256Digest\": \"a19d60a2e1d3562cf9434bb7817b85f8ccca1472c6622921b83db9e1a85a98b7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"amg\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-dashboard (>=1.1.0)\",\n \"azure-mgmt-dashboard>=1.1.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Azure + Managed Grafana Extension\",\n \"version\": \"1.3.0\"\n + \ },\n \"sha256Digest\": \"c644207517d21641677fe5a1644271d5f751f1493e0dc8e1cded6645ac096a91\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.1-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.3.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"amg\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-dashboard (>=1.1.0)\",\n \"azure-mgmt-dashboard>=1.1.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Azure + Managed Grafana Extension\",\n \"version\": \"1.3.1\"\n + \ },\n \"sha256Digest\": \"7c7f452e18b92934d4f4ccc23ef2984ac0078397ca85b60bb287bf4f89c925f5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.2-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.3.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.3.2\"\n },\n \"sha256Digest\": \"cf31e9336e8b8bf63b7a1362ea05871f65493cfd49fd4a2cb73c1cb63c81f91a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.3-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.3.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.3.3\"\n },\n \"sha256Digest\": \"73914977612839d541cb356f3fccd0381d1126b20fdb6cab29a99fd81da974c0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.4-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.3.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.3.4\"\n },\n \"sha256Digest\": \"cf665da8629edfef5189eb2dd57d849d458f841cff83d2cad2a1b61104febf22\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.5-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.3.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.3.5\"\n },\n \"sha256Digest\": \"5eb4615d05dd85021d7d00311fdc25645535fe69e07cea1eca68d58cfb7bd44e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.6-py3-none-any.whl\",\n + \ \"filename\": \"amg-1.3.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"1.3.6\"\n },\n \"sha256Digest\": \"52fbff96d56e381e636f6b2e9f8be80ac7eef766153ba8225a183b73d2972f25\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-2.0.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-2.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.61.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"2.0.0\"\n },\n \"sha256Digest\": \"f6d05f59e995cdfb99d3f465b827c8989f76564cb6e0933cc8ffc7f82a46d427\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-2.1.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-2.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.61.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"2.1.0\"\n },\n \"sha256Digest\": \"b28952d967b9a1e0d81dac280bdff23b44fdbb06dedd66cdf99477bdd7541d6c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-2.2.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-2.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.61.0\",\n + \ \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"ad4g@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"amg\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Azure Managed Grafana Extension\",\n \"version\": + \"2.2.0\"\n },\n \"sha256Digest\": \"8d832463a35329e61840bce5fe2c3ba214f8e800cc38140fe58dc2bf13ffeb90\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-2.3.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-2.3.0-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": - \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n - \ \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"ad4g@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n - \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"amg\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"azure-mgmt-dashboard (>=1.1.0)\",\n \"azure-mgmt-dashboard>=1.1.0\"\n - \ ]\n }\n ],\n - \ \"summary\": \"Microsoft Azure Command-Line Tools Azure - Managed Grafana Extension\",\n \"version\": \"1.3.0\"\n - \ },\n \"sha256Digest\": \"c644207517d21641677fe5a1644271d5f751f1493e0dc8e1cded6645ac096a91\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.1-py3-none-any.whl\",\n - \ \"filename\": \"amg-1.3.1-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": - \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n - \ \"classifiers\": [\n \"Development - Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n - \ \"Intended Audience :: System Administrators\",\n - \ \"Programming Language :: Python\",\n \"Programming - Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"ad4g@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/amg\"\n - \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"amg\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"azure-mgmt-dashboard (>=1.1.0)\",\n \"azure-mgmt-dashboard>=1.1.0\"\n - \ ]\n }\n ],\n - \ \"summary\": \"Microsoft Azure Command-Line Tools Azure - Managed Grafana Extension\",\n \"version\": \"1.3.1\"\n - \ },\n \"sha256Digest\": \"7c7f452e18b92934d4f4ccc23ef2984ac0078397ca85b60bb287bf4f89c925f5\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.2-py3-none-any.whl\",\n - \ \"filename\": \"amg-1.3.2-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": - \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \ \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n @@ -10038,11 +10564,11 @@ interactions: \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"amg\",\n \"summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\",\n \"version\": - \"1.3.2\"\n },\n \"sha256Digest\": \"cf31e9336e8b8bf63b7a1362ea05871f65493cfd49fd4a2cb73c1cb63c81f91a\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.3-py3-none-any.whl\",\n - \ \"filename\": \"amg-1.3.3-py3-none-any.whl\",\n \"metadata\": + \"2.3.0\"\n },\n \"sha256Digest\": \"8384502d50e6984ff286c0222686079a3fabfbdc6588e862d2af2d8967cebec7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-2.3.1-py3-none-any.whl\",\n + \ \"filename\": \"amg-2.3.1-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": - \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \ \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n @@ -10064,11 +10590,11 @@ interactions: \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"amg\",\n \"summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\",\n \"version\": - \"1.3.3\"\n },\n \"sha256Digest\": \"73914977612839d541cb356f3fccd0381d1126b20fdb6cab29a99fd81da974c0\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.4-py3-none-any.whl\",\n - \ \"filename\": \"amg-1.3.4-py3-none-any.whl\",\n \"metadata\": + \"2.3.1\"\n },\n \"sha256Digest\": \"a85cb7aeb31878ea3be76df39f140d10c459cbf8d78971198decd58d8bdb355c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-2.4.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-2.4.0-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": - \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \ \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n @@ -10090,11 +10616,11 @@ interactions: \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"amg\",\n \"summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\",\n \"version\": - \"1.3.4\"\n },\n \"sha256Digest\": \"cf665da8629edfef5189eb2dd57d849d458f841cff83d2cad2a1b61104febf22\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-1.3.5-py3-none-any.whl\",\n - \ \"filename\": \"amg-1.3.5-py3-none-any.whl\",\n \"metadata\": + \"2.4.0\"\n },\n \"sha256Digest\": \"624ca8c847ce93ecc839ee428115d09b263c4ece7c52da0abef38893645111d6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amg-2.5.0-py3-none-any.whl\",\n + \ \"filename\": \"amg-2.5.0-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.maxCliCoreVersion\": - \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.38.0\",\n + \"2.99.0\",\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \ \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n @@ -10116,7 +10642,7 @@ interactions: \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"amg\",\n \"summary\": \"Microsoft Azure Command-Line Tools Azure Managed Grafana Extension\",\n \"version\": - \"1.3.5\"\n },\n \"sha256Digest\": \"5eb4615d05dd85021d7d00311fdc25645535fe69e07cea1eca68d58cfb7bd44e\"\n + \"2.5.0\"\n },\n \"sha256Digest\": \"c9002d8c653f56a8b1086bf33e918f3ba6f327cc84006be7594078421887f41d\"\n \ }\n ],\n \"amlfs\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/amlfs-1.0.0-py3-none-any.whl\",\n \ \"filename\": \"amlfs-1.0.0-py3-none-any.whl\",\n \"metadata\": @@ -10425,6 +10951,32 @@ interactions: \"apic-extension\",\n \"summary\": \"Microsoft Azure Command-Line Tools ApicExtension Extension.\",\n \"version\": \"1.0.0\"\n \ },\n \"sha256Digest\": \"4bcaebfa5e9b112673f49fdee28c0690823e52a86e0ad4e5329634f4d195d425\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/apic_extension-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"apic_extension-1.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/apic-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"apic-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ApicExtension Extension.\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"01e5eb422e84268396ddb0251230bdd3b9d475f463e8133f0415fb0f0e03240b\"\n \ }\n ],\n \"application-insights\": [\n {\n \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/application_insights-0.1.3-py2.py3-none-any.whl\",\n \ \"filename\": \"application_insights-0.1.3-py2.py3-none-any.whl\",\n @@ -11007,7 +11559,37 @@ interactions: \ \"summary\": \"Support for managing Application Insights components and querying metrics, events, and logs from such components.\",\n \ \"version\": \"1.2.1\"\n },\n \"sha256Digest\": - \"e1fa824eb587e2bec7f4cb4d1c4ce1033ab3d3fac65af42dd6218f673b019cee\"\n }\n + \"e1fa824eb587e2bec7f4cb4d1c4ce1033ab3d3fac65af42dd6218f673b019cee\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/application_insights-1.2.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"application_insights-1.2.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/application-insights\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"application-insights\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"isodate (~=0.6.0)\",\n \"isodate~=0.6.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for managing Application Insights + components and querying metrics, events, and logs from such components.\",\n + \ \"version\": \"1.2.2\"\n },\n \"sha256Digest\": + \"8a398f8fc8c6facfbce798e5cb79b9c04cf99b24bca7153f49c7fb9513f656f2\"\n }\n \ ],\n \"appservice-kube\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.0-py2.py3-none-any.whl\",\n \ \"filename\": \"appservice_kube-0.1.0-py2.py3-none-any.whl\",\n @@ -11498,8 +12080,171 @@ interactions: \ \"summary\": \"Microsoft Azure Command-Line Tools Arcappliance Extension\",\n \"version\": \"1.1.1\"\n },\n \ \"sha256Digest\": \"fc32b32be734782c31c54449a1658fe87845bb4aaa515a8ebb1db4c25cfc8658\"\n + \ },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-1.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcappliance-1.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"appliance@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"arcappliance\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"jsonschema (==4.17.3)\",\n \"kubernetes + (==28.1.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Arcappliance + Extension\",\n \"version\": \"1.2.0\"\n },\n + \ \"sha256Digest\": \"5ec3f8a22f90cbf3d344a3960d5bc6f76b05ec90a33f48da22d98329fff9b076\"\n + \ },\n {\n \"downloadUrl\": \"https://arcplatformcliextprod.blob.core.windows.net/arcappliance/arcappliance-1.3.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcappliance-1.3.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"appliance@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://msazure.visualstudio.com/AzureArcPlatform/_git/arcappliance-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"arcappliance\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"jsonschema (==4.17.3)\",\n \"kubernetes + (==28.1.0)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Arcappliance + Extension\",\n \"version\": \"1.3.0\"\n },\n + \ \"sha256Digest\": \"82030aee437c1bbe53257713e3ccda23c5ade36b45313d895e8caa20b78b038c\"\n \ }\n ],\n \"arcdata\": [\n {\n \"downloadUrl\": - \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.16-py2.py3-none-any.whl\",\n + \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.19-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.19-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"colorama==0.4.4\",\n \"jinja2 + (==3.1.4)\",\n \"jinja2==3.1.4\",\n \"jsonpatch + (==1.24)\",\n \"jsonpatch==1.24\",\n \"jsonpath-ng + (==1.4.3)\",\n \"jsonpath_ng==1.4.3\",\n \"jsonschema + (==3.2.0)\",\n \"jsonschema==3.2.0\",\n \"kubernetes + (==23.3.0)\",\n \"kubernetes==23.3.0\",\n \"ndjson + (==0.3.1)\",\n \"ndjson==0.3.1\",\n \"pem + (==21.2.0)\",\n \"pem==21.2.0\",\n \"pydash + (==7.0.6)\",\n \"pydash==7.0.6\",\n \"regex + (==2023.10.3)\",\n \"regex==2023.10.3\"\n ]\n + \ }\n ],\n \"summary\": + \"Tools for managing ArcData.\",\n \"version\": \"1.5.19\"\n + \ },\n \"sha256Digest\": \"e5b9ae07e62dd9457ff7019e04c7f99b1a7ae59983b17d743ec178bda4f2ceb2\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.18-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.18-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.1.4)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==7.0.6)\",\n \"regex + (==2023.10.3)\"\n ]\n }\n + \ ],\n \"summary\": \"Tools for managing + ArcData.\",\n \"version\": \"1.5.18\"\n },\n + \ \"sha256Digest\": \"92ca0a9ad47c80c382e41a19e65a24ba7eaec8231dd7e6a3dbc4b7df368377b7\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.17-py2.py3-none-any.whl\",\n + \ \"filename\": \"arcdata-1.5.17-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": + \"2.3.1\",\n \"classifiers\": [\n \"Development + Status :: 1 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.6\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"dpgswdist@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://docs.microsoft.com/en-us/azure/azure-arc/data/\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcdata\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"colorama + (==0.4.4)\",\n \"jinja2 (==3.1.4)\",\n \"jsonpatch + (==1.24)\",\n \"jsonpath-ng (==1.4.3)\",\n + \ \"jsonschema (==3.2.0)\",\n \"kubernetes + (==23.3.0)\",\n \"ndjson (==0.3.1)\",\n \"pem + (==21.2.0)\",\n \"pydash (==7.0.6)\",\n \"regex + (==2023.10.3)\"\n ]\n }\n + \ ],\n \"summary\": \"Tools for managing + ArcData.\",\n \"version\": \"1.5.17\"\n },\n + \ \"sha256Digest\": \"e70d2a2ced54ed03a08520161bf7736d6f5234cb454bfe6acae18afd99769ed8\"\n + \ },\n {\n \"downloadUrl\": \"https://azurearcdatacli.blob.core.windows.net/cli-extensions/arcdata-1.5.16-py2.py3-none-any.whl\",\n \ \"filename\": \"arcdata-1.5.16-py2.py3-none-any.whl\",\n \"metadata\": {\n \"azext.isExperimental\": false,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": [\n \"Development @@ -12891,6 +13636,33 @@ interactions: \ }\n ],\n \"summary\": \"Tools for managing ArcData.\",\n \"version\": \"0.0.1\"\n \ },\n \"sha256Digest\": \"e727a7bf123aa15b406455f268be8a906907d6d32bd314d122b83d006767adc8\"\n + \ }\n ],\n \"arcgateway\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/arcgateway-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"arcgateway-1.0.0b1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/arcgateway\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"arcgateway\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Arcgateway Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"330fd1f1974bece16dc924e353731b1f0f4403a58e36e3347705f01dbdbf03d1\"\n \ }\n ],\n \"astronomer\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/astronomer-1.0.0-py3-none-any.whl\",\n \ \"filename\": \"astronomer-1.0.0-py3-none-any.whl\",\n \"metadata\": @@ -14707,6 +15479,58 @@ interactions: \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall resources.\",\n \"version\": \"1.0.1\"\n },\n \ \"sha256Digest\": \"920023c55ae72d7e85baa43d81d96683be0e8348228b6f8e89e479fd4092c0f8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-1.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-1.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"project_urls\": {\n \"Home\": + \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"1.1.0\"\n },\n + \ \"sha256Digest\": \"562cc396c6afa1ef996c35b7bed801b3fd9677e4c6923f1148cb09255b24d1ef\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-1.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"azure_firewall-1.2.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"project_urls\": {\n \"Home\": + \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azure-firewall\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-firewall\",\n \"summary\": \"Manage Azure Firewall + resources.\",\n \"version\": \"1.2.0\"\n },\n + \ \"sha256Digest\": \"5468cc09b8ea7918176b5e95aa3c24c7ad9b7d1b68c47d16bf522a053fd811e8\"\n \ }\n ],\n \"azure-iot\": [\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.10.11/azure_iot-0.10.11-py3-none-any.whl\",\n \ \"filename\": \"azure_iot-0.10.11-py3-none-any.whl\",\n \"metadata\": @@ -15899,8 +16723,49 @@ interactions: (~=1.2)\"\n ]\n }\n ],\n \ \"summary\": \"The Azure IoT extension for Azure CLI.\",\n \ \"version\": \"0.24.0\"\n },\n \"sha256Digest\": - \"a36e41f28904f2f29efd38ebebda6823c0a9101bed3c00e0af03cfffcd721da1\"\n }\n - \ ],\n \"azure-iot-ops\": [\n {\n \"downloadUrl\": + \"a36e41f28904f2f29efd38ebebda6823c0a9101bed3c00e0af03cfffcd721da1\"\n },\n + \ {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-cli-extension/releases/download/v0.25.0/azure_iot-0.25.0-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot-0.25.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [\n \"uamqp\"\n ],\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"license_file\": \"LICENSE\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"azure-iot\",\n \"requires_python\": + \">=3.8\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-core + (<2.0.0,>=1.24.0)\",\n \"azure-identity (<2.0.0,>=1.6.1)\",\n + \ \"azure-iot-device (~=2.11)\",\n \"azure-mgmt-core + (<2.0.0,>=1.3.0)\",\n \"azure-storage-blob + (<13.0.0,>=12.14.0)\",\n \"jsonschema (~=3.2.0)\",\n + \ \"msrest (>=0.6.21)\",\n \"msrestazure + (<2.0.0,>=0.6.3)\",\n \"packaging\",\n \"tomli + (~=2.0)\",\n \"tomli-w (~=1.0)\",\n \"tqdm + (~=4.62)\",\n \"treelib (~=1.6)\"\n ]\n + \ },\n {\n \"extra\": + \"uamqp\",\n \"requires\": [\n \"uamqp + (<=1.6.8,>=1.2)\"\n ]\n }\n + \ ],\n \"summary\": \"The Azure IoT extension + for Azure CLI.\",\n \"version\": \"0.25.0\"\n },\n + \ \"sha256Digest\": \"7db4bc07667efa8472513d9e121fb2551fcaeae68255c7bc0768ad4177c1b1c6\"\n + \ }\n ],\n \"azure-iot-ops\": [\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.1.0b1/azure_iot_ops-0.1.0b1-py3-none-any.whl\",\n \ \"filename\": \"azure_iot_ops-0.1.0b1-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": @@ -16341,11 +17206,181 @@ interactions: (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n \ }\n ],\n \"summary\": \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": - \"0.5.0b1\"\n },\n \"sha256Digest\": \"bae0b60c4a8c39689a164bddf5ffb2bd2da09fc87c9b03c2d22fc9936e10dcf4\"\n - \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.5.0b2/azure_iot_ops-0.5.0b2-py3-none-any.whl\",\n - \ \"filename\": \"azure_iot_ops-0.5.0b2-py3-none-any.whl\",\n + \"0.5.0b1\"\n },\n \"sha256Digest\": \"bae0b60c4a8c39689a164bddf5ffb2bd2da09fc87c9b03c2d22fc9936e10dcf4\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.5.0b2/azure_iot_ops-0.5.0b2-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.5.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"packaging (>=23.2)\",\n \"protobuf + (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": + \"0.5.0b2\"\n },\n \"sha256Digest\": \"3b590acb85b946bc832244c7e6fd85bb19d5aa66dc30c8f72d37c0ea93a3d9b2\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.5.1b1/azure_iot_ops-0.5.1b1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.5.1b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"packaging (>=23.2)\",\n \"protobuf + (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": + \"0.5.1b1\"\n },\n \"sha256Digest\": \"09a63dbd9dc976235fe295eb78083fa6141f52db6dde9c8c25975c23f1f79fe4\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.6.0b1/azure_iot_ops-0.6.0b1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.6.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"packaging (>=23.2)\",\n \"protobuf + (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": + \"0.6.0b1\"\n },\n \"sha256Digest\": \"5740d3db63a76c01059311998840a0886524b8c0174a271272817f90880a6790\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.6.0b2/azure_iot_ops-0.6.0b2-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.6.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"packaging (>=23.2)\",\n \"protobuf + (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": + \"0.6.0b2\"\n },\n \"sha256Digest\": \"ac8614eeab41c9fdd30e4672d558f8ed1c6d585d1ab501afc6e9660928d43616\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.6.0b3/azure_iot_ops-0.6.0b3-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.6.0b3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\"\n ],\n \"extensions\": {\n + \ \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"iotupx@microsoft.com\",\n \"name\": \"Microsoft\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n + \ \"packaging (>=23.2)\",\n \"protobuf + (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n + \ }\n ],\n \"summary\": + \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": + \"0.6.0b3\"\n },\n \"sha256Digest\": \"105527ab18b2d04292cb7c33efbf05258becc5be2dd859441c2703408372462d\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.6.0b4/azure_iot_ops-0.6.0b4-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.6.0b4-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -16369,17 +17404,17 @@ interactions: \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n \ \"run_requires\": [\n {\n \"requires\": - [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes - (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n - \ \"packaging (>=23.2)\",\n \"protobuf + [\n \"azure-identity (<1.18.0,>=1.14.1)\",\n + \ \"kubernetes (<29.0,>=27.2)\",\n \"opentelemetry-proto + (~=1.20.0)\",\n \"packaging (>=23.2)\",\n \"protobuf (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n \ }\n ],\n \"summary\": \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": - \"0.5.0b2\"\n },\n \"sha256Digest\": \"3b590acb85b946bc832244c7e6fd85bb19d5aa66dc30c8f72d37c0ea93a3d9b2\"\n - \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.5.1b1/azure_iot_ops-0.5.1b1-py3-none-any.whl\",\n - \ \"filename\": \"azure_iot_ops-0.5.1b1-py3-none-any.whl\",\n + \"0.6.0b4\"\n },\n \"sha256Digest\": \"434c90b6ae2f51f751e5fb868f0fd649a8affd123e049c956b7fb3edf6e79de4\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.7.0b1/azure_iot_ops-0.7.0b1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.7.0b1-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -16403,13 +17438,89 @@ interactions: \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n \ \"run_requires\": [\n {\n \"requires\": - [\n \"azure-identity (<2.0,>=1.14.1)\",\n \"kubernetes - (<29.0,>=27.2)\",\n \"opentelemetry-proto (~=1.20.0)\",\n - \ \"packaging (>=23.2)\",\n \"protobuf + [\n \"azure-identity (<1.18.0,>=1.14.1)\",\n + \ \"kubernetes (<29.0,>=27.2)\",\n \"opentelemetry-proto + (~=1.20.0)\",\n \"packaging (>=23.2)\",\n \"protobuf (~=4.25.0)\",\n \"rich (<14.0,>=13.6)\"\n ]\n \ }\n ],\n \"summary\": \"The Azure IoT Operations extension for Azure CLI.\",\n \"version\": - \"0.5.1b1\"\n },\n \"sha256Digest\": \"09a63dbd9dc976235fe295eb78083fa6141f52db6dde9c8c25975c23f1f79fe4\"\n + \"0.7.0b1\"\n },\n \"sha256Digest\": \"7d3f834f9e6bfa5b9c666b9d37f657d41256e68d77b9a69fde3a5333c3eb61f6\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.7.0b2/azure_iot_ops-0.7.0b2-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.7.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\",\n \"Programming Language :: Python :: 3.12\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<1.18.0,>=1.14.1)\",\n + \ \"azure-identity<1.18.0,>=1.14.1\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"kubernetes<29.0,>=27.2\",\n + \ \"opentelemetry-proto (~=1.20.0)\",\n \"opentelemetry-proto~=1.20.0\",\n + \ \"packaging (>=23.2)\",\n \"packaging>=23.2\",\n + \ \"protobuf (~=4.25.0)\",\n \"protobuf~=4.25.0\",\n + \ \"rich (<14.0,>=13.6)\",\n \"rich<14.0,>=13.6\"\n + \ ]\n }\n ],\n + \ \"summary\": \"The Azure IoT Operations extension for + Azure CLI.\",\n \"version\": \"0.7.0b2\"\n },\n + \ \"sha256Digest\": \"eeafdbfbbea6d919729ac81510008581ff234117a5301eae9d31237271ea2e4e\"\n + \ },\n {\n \"downloadUrl\": \"https://github.com/Azure/azure-iot-ops-cli-extension/releases/download/v0.8.0b1/azure_iot_ops-0.8.0b1-py3-none-any.whl\",\n + \ \"filename\": \"azure_iot_ops-0.8.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3 :: + Only\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.8\",\n \"Programming + Language :: Python :: 3.9\",\n \"Programming Language + :: Python :: 3.10\",\n \"Programming Language :: Python + :: 3.11\",\n \"Programming Language :: Python :: 3.12\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"iotupx@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-iot-ops-cli-extension\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"license_file\": + \"LICENSE\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azure-iot-ops\",\n \"requires_python\": \">=3.8\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"azure-identity (<1.18.0,>=1.14.1)\",\n + \ \"azure-identity<1.18.0,>=1.14.1\",\n \"kubernetes + (<29.0,>=27.2)\",\n \"kubernetes<29.0,>=27.2\",\n + \ \"opentelemetry-proto (~=1.20.0)\",\n \"opentelemetry-proto~=1.20.0\",\n + \ \"packaging (>=23.2)\",\n \"packaging>=23.2\",\n + \ \"protobuf (~=4.25.0)\",\n \"protobuf~=4.25.0\",\n + \ \"rich (<14.0,>=13.6)\",\n \"rich<14.0,>=13.6\"\n + \ ]\n }\n ],\n + \ \"summary\": \"The Azure IoT Operations extension for + Azure CLI.\",\n \"version\": \"0.8.0b1\"\n },\n + \ \"sha256Digest\": \"eae168fc237816f73610b834a67f0fe92bcbcacb693ac63904455e90aca27f40\"\n \ }\n ],\n \"azure-sphere\": [\n {\n \"downloadUrl\": \"https://software-static.download.prss.microsoft.com/dbazure/888969d5-f34g-4e03-ac9d-1f9786c66751/azure_sphere-1.0.1-py2.py3-none-any.whl\",\n \ \"filename\": \"azure_sphere-1.0.1-py2.py3-none-any.whl\",\n @@ -16567,6 +17678,58 @@ interactions: \"azurelargeinstance\",\n \"summary\": \"Microsoft Azure Command-Line Tools Azurelargeinstance Extension.\",\n \"version\": \"1.0.0b2\"\n },\n \"sha256Digest\": \"6948ac3306269ea6c8ff6d32d5673989dfd4dfa0a4e4c5d6d3991b364d5dc628\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azurelargeinstance-1.0.0b3-py3-none-any.whl\",\n + \ \"filename\": \"azurelargeinstance-1.0.0b3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azurelargeinstance\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azurelargeinstance\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Azurelargeinstance Extension.\",\n \"version\": + \"1.0.0b3\"\n },\n \"sha256Digest\": \"093a2fa900e3df53f8bf15b335156058333efe0eff9584a11db4bac0bccc7b1d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/azurelargeinstance-1.0.0b4-py3-none-any.whl\",\n + \ \"filename\": \"azurelargeinstance-1.0.0b4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/azurelargeinstance\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"azurelargeinstance\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Azurelargeinstance Extension.\",\n \"version\": + \"1.0.0b4\"\n },\n \"sha256Digest\": \"6fee478bd919922a0532573fdea3b5422925d374ba6649ea015d4d33941e819a\"\n \ }\n ],\n \"azurestackhci\": [\n {\n \"downloadUrl\": \"https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.0-py3-none-any.whl\",\n \ \"filename\": \"azurestackhci-0.2.0-py3-none-any.whl\",\n @@ -16858,6 +18021,58 @@ interactions: \"2.0\",\n \"name\": \"baremetal-infrastructure\",\n \"summary\": \"Additional commands for working with BareMetal instances.\",\n \"version\": \"2.0.1\"\n },\n \"sha256Digest\": \"ea127d64603c8a45774cdf9aa80c4c8b5839a42719971b296beb96105fe5ef2d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/baremetal_infrastructure-3.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"baremetal_infrastructure-3.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/baremetal-infrastructure\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"baremetal-infrastructure\",\n \"summary\": \"Microsoft + Azure Command-Line Tools BaremetalInfrastructure Extension.\",\n \"version\": + \"3.0.0b1\"\n },\n \"sha256Digest\": \"83ff3e4540f522a5f3578a923155715160e90a15a8d919a2e5569c08f1295a2f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/baremetal_infrastructure-3.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"baremetal_infrastructure-3.0.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/baremetal-infrastructure\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"baremetal-infrastructure\",\n \"summary\": \"Microsoft + Azure Command-Line Tools BaremetalInfrastructure Extension.\",\n \"version\": + \"3.0.0b2\"\n },\n \"sha256Digest\": \"0e5843e295a27058262e945febc43179ce173ac27ebcfe4456b466b7acb9c220\"\n \ }\n ],\n \"bastion\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"bastion-0.1.0-py3-none-any.whl\",\n \"metadata\": @@ -16961,10 +18176,114 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Bastion Extension.\",\n \"version\": \"0.2.2\"\n - \ },\n \"sha256Digest\": \"46939533454fbc427b136c9108387598225971f5f8c3a96ea25e8892ee74ba46\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.3-py3-none-any.whl\",\n - \ \"filename\": \"bastion-0.2.3-py3-none-any.whl\",\n \"metadata\": + Tools Bastion Extension.\",\n \"version\": \"0.2.2\"\n + \ },\n \"sha256Digest\": \"46939533454fbc427b136c9108387598225971f5f8c3a96ea25e8892ee74ba46\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.3-py3-none-any.whl\",\n + \ \"filename\": \"bastion-0.2.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"0.2.3\"\n + \ },\n \"sha256Digest\": \"fa0750de72dd8645c6fc64d38fb271d8e8c928b101a097a709df6f08932d27dc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.4-py3-none-any.whl\",\n + \ \"filename\": \"bastion-0.2.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"0.2.4\"\n + \ },\n \"sha256Digest\": \"f765a3443cc8d37da6efe4b6e14544916a0367a86a74b4c557ce3a52866d87b3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.5-py3-none-any.whl\",\n + \ \"filename\": \"bastion-0.2.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"0.2.5\"\n + \ },\n \"sha256Digest\": \"49f509734778db4badf14dadee8a1d59b66f79776fc2c4848026faf5abf1193c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.6-py3-none-any.whl\",\n + \ \"filename\": \"bastion-0.2.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.43.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"0.2.6\"\n + \ },\n \"sha256Digest\": \"16e347a701924127a85262587a68b220e0aa9b1581f25066e82c9cabdc4c5789\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.7-py3-none-any.whl\",\n + \ \"filename\": \"bastion-0.2.7-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n @@ -16987,11 +18306,11 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Bastion Extension.\",\n \"version\": \"0.2.3\"\n - \ },\n \"sha256Digest\": \"fa0750de72dd8645c6fc64d38fb271d8e8c928b101a097a709df6f08932d27dc\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.4-py3-none-any.whl\",\n - \ \"filename\": \"bastion-0.2.4-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + Tools Bastion Extension.\",\n \"version\": \"0.2.7\"\n + \ },\n \"sha256Digest\": \"f587a0bc6ac7a4f72d24cf2fba613bd555fa505149d7e1cf65eacb435de33cbf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.3.0-py3-none-any.whl\",\n + \ \"filename\": \"bastion-0.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n @@ -17013,11 +18332,11 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Bastion Extension.\",\n \"version\": \"0.2.4\"\n - \ },\n \"sha256Digest\": \"f765a3443cc8d37da6efe4b6e14544916a0367a86a74b4c557ce3a52866d87b3\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.5-py3-none-any.whl\",\n - \ \"filename\": \"bastion-0.2.5-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + Tools Bastion Extension.\",\n \"version\": \"0.3.0\"\n + \ },\n \"sha256Digest\": \"c20d8e423acef3b6728c9abdfe90ad4a7020f2d122068983d7b59b9e3fef84c3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"bastion-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n @@ -17039,11 +18358,11 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Bastion Extension.\",\n \"version\": \"0.2.5\"\n - \ },\n \"sha256Digest\": \"49f509734778db4badf14dadee8a1d59b66f79776fc2c4848026faf5abf1193c\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.6-py3-none-any.whl\",\n - \ \"filename\": \"bastion-0.2.6-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + Tools Bastion Extension.\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"39b1468f0741f640294e2b9f258bf9fd46541e061b913003c70756f5298fed42\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"bastion-1.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n @@ -17065,11 +18384,11 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Bastion Extension.\",\n \"version\": \"0.2.6\"\n - \ },\n \"sha256Digest\": \"16e347a701924127a85262587a68b220e0aa9b1581f25066e82c9cabdc4c5789\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.2.7-py3-none-any.whl\",\n - \ \"filename\": \"bastion-0.2.7-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + Tools Bastion Extension.\",\n \"version\": \"1.0.1\"\n + \ },\n \"sha256Digest\": \"dbeef63e7b5c45028b7362709f9b41b250fe8d611b21baa00b8839d86848dc3e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.0.2-py3-none-any.whl\",\n + \ \"filename\": \"bastion-1.0.2-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n @@ -17091,10 +18410,10 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Bastion Extension.\",\n \"version\": \"0.2.7\"\n - \ },\n \"sha256Digest\": \"f587a0bc6ac7a4f72d24cf2fba613bd555fa505149d7e1cf65eacb435de33cbf\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-0.3.0-py3-none-any.whl\",\n - \ \"filename\": \"bastion-0.3.0-py3-none-any.whl\",\n \"metadata\": + Tools Bastion Extension.\",\n \"version\": \"1.0.2\"\n + \ },\n \"sha256Digest\": \"1637b37374e8956d555ee89e005ceb952aed4e754b93a8ec887a4f90ce4e36f8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"bastion-1.1.0-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n @@ -17117,10 +18436,10 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Bastion Extension.\",\n \"version\": \"0.3.0\"\n - \ },\n \"sha256Digest\": \"c20d8e423acef3b6728c9abdfe90ad4a7020f2d122068983d7b59b9e3fef84c3\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.0.0-py3-none-any.whl\",\n - \ \"filename\": \"bastion-1.0.0-py3-none-any.whl\",\n \"metadata\": + Tools Bastion Extension.\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"d90bc404d2f9d22435a2bd34bd1fd6094d71d6f1719763c72ee6e4835ec8a99d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.1.1-py3-none-any.whl\",\n + \ \"filename\": \"bastion-1.1.1-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.43.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n @@ -17143,12 +18462,12 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Bastion Extension.\",\n \"version\": \"1.0.0\"\n - \ },\n \"sha256Digest\": \"39b1468f0741f640294e2b9f258bf9fd46541e061b913003c70756f5298fed42\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.0.1-py3-none-any.whl\",\n - \ \"filename\": \"bastion-1.0.1-py3-none-any.whl\",\n \"metadata\": + Tools Bastion Extension.\",\n \"version\": \"1.1.1\"\n + \ },\n \"sha256Digest\": \"0e6dd3bc5df481e083db0767e1eb1c5dbbb70d111524d5d692fbec2d278986ca\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"bastion-1.2.0-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": - \"2.43.0\",\n \"classifiers\": [\n \"Development + \"2.62.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -17169,12 +18488,12 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Bastion Extension.\",\n \"version\": \"1.0.1\"\n - \ },\n \"sha256Digest\": \"dbeef63e7b5c45028b7362709f9b41b250fe8d611b21baa00b8839d86848dc3e\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.0.2-py3-none-any.whl\",\n - \ \"filename\": \"bastion-1.0.2-py3-none-any.whl\",\n \"metadata\": + Tools Bastion Extension.\",\n \"version\": \"1.2.0\"\n + \ },\n \"sha256Digest\": \"1de9f4df44620d477c28b099408bd81b68fafc8b7927058cb9de10099eee5efd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.3.0-py3-none-any.whl\",\n + \ \"filename\": \"bastion-1.3.0-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": - \"2.43.0\",\n \"classifiers\": [\n \"Development + \"2.62.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -17195,8 +18514,34 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Bastion Extension.\",\n \"version\": \"1.0.2\"\n - \ },\n \"sha256Digest\": \"1637b37374e8956d555ee89e005ceb952aed4e754b93a8ec887a4f90ce4e36f8\"\n + Tools Bastion Extension.\",\n \"version\": \"1.3.0\"\n + \ },\n \"sha256Digest\": \"151ab25d4dcde10b46c4693cefdaf1d0d5841e15cfe3ec64c089aaaf55e6c8c0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.3.1-py3-none-any.whl\",\n + \ \"filename\": \"bastion-1.3.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.62.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/bastion\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"bastion\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Bastion Extension.\",\n \"version\": \"1.3.1\"\n + \ },\n \"sha256Digest\": \"0ccaa40674fc329fe9f9257f869c319c64d6c89c028664a6ff534ebaee1dc5e9\"\n \ }\n ],\n \"billing-benefits\": [\n {\n \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/billing_benefits-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"billing_benefits-0.1.0-py3-none-any.whl\",\n @@ -17604,6 +18949,36 @@ interactions: \ \"summary\": \"Microsoft Azure Command-Line Tools ComputeManagementClient Extension\",\n \"version\": \"1.0.0\"\n },\n \ \"sha256Digest\": \"4e2ee7e468b23bff594e99059b8b279485f28a2dbe9a99f82fdf9f48cce82f13\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cloud_service-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"cloud_service-1.0.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cloudservice\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"cloud-service\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-compute (~=33.0.0)\",\n \"azure-mgmt-compute~=33.0.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools ComputeManagementClient + Extension\",\n \"version\": \"1.0.1\"\n },\n + \ \"sha256Digest\": \"f6b2d80a7eab3babd3185741b467e01d0c1c78a6ed7ffb78f031b875007373e4\"\n \ }\n ],\n \"command-change\": [\n {\n \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/command_change-1.0.0b1-py3-none-any.whl\",\n \ \"filename\": \"command_change-1.0.0b1-py3-none-any.whl\",\n @@ -18437,8 +19812,164 @@ interactions: \ \"azure-core\"\n ]\n \ }\n ],\n \"summary\": \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient - Extension\",\n \"version\": \"1.9.3\"\n },\n - \ \"sha256Digest\": \"44cd8bee4797ccb20bf522e8a98bc5fc88ad326aabd10ac62d789738b672c92f\"\n + Extension\",\n \"version\": \"1.9.3\"\n },\n + \ \"sha256Digest\": \"44cd8bee4797ccb20bf522e8a98bc5fc88ad326aabd10ac62d789738b672c92f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.10.0-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.10.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.59.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat + (>=1.3.0)\",\n \"azure-communication-chat>=1.3.0\",\n + \ \"azure-communication-email (>=1.0.0)\",\n + \ \"azure-communication-email>=1.0.0\",\n \"azure-communication-identity + (>=1.2.0)\",\n \"azure-communication-identity>=1.2.0\",\n + \ \"azure-communication-phonenumbers (>=1.2.0b3)\",\n + \ \"azure-communication-phonenumbers>=1.2.0b3\",\n + \ \"azure-communication-rooms (>=1.1.0)\",\n + \ \"azure-communication-rooms>=1.1.0\",\n \"azure-communication-sms\",\n + \ \"azure-communication-sms\",\n \"azure-core\",\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.10.0\"\n },\n + \ \"sha256Digest\": \"668659d11dde720fd2aff0da6044994a3889525b63c35abea4db89cd4ff27473\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.11.0-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.11.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.59.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat + (>=1.3.0)\",\n \"azure-communication-chat>=1.3.0\",\n + \ \"azure-communication-email (>=1.0.0)\",\n + \ \"azure-communication-email>=1.0.0\",\n \"azure-communication-identity + (>=1.2.0)\",\n \"azure-communication-identity>=1.2.0\",\n + \ \"azure-communication-phonenumbers (>=1.2.0b3)\",\n + \ \"azure-communication-phonenumbers>=1.2.0b3\",\n + \ \"azure-communication-rooms (>=1.1.0)\",\n + \ \"azure-communication-rooms>=1.1.0\",\n \"azure-communication-sms\",\n + \ \"azure-communication-sms\",\n \"azure-core\",\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.11.0\"\n },\n + \ \"sha256Digest\": \"4722d69fc2e283cf3c82f6a80d99e08407f5ce9dcc52b9ac26639ce4a956a81a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.11.1-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.11.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.59.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat + (>=1.3.0)\",\n \"azure-communication-chat>=1.3.0\",\n + \ \"azure-communication-email (>=1.0.0)\",\n + \ \"azure-communication-email>=1.0.0\",\n \"azure-communication-identity + (>=1.2.0)\",\n \"azure-communication-identity>=1.2.0\",\n + \ \"azure-communication-phonenumbers (>=1.2.0b3)\",\n + \ \"azure-communication-phonenumbers>=1.2.0b3\",\n + \ \"azure-communication-rooms (>=1.1.0)\",\n + \ \"azure-communication-rooms>=1.1.0\",\n \"azure-communication-sms\",\n + \ \"azure-communication-sms\",\n \"azure-core\",\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.11.1\"\n },\n + \ \"sha256Digest\": \"c78409eff0310ee51cefc0c8aa2a13392451d44fc953e42e7e266bbf21042cf4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/communication-1.11.2-py3-none-any.whl\",\n + \ \"filename\": \"communication-1.11.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.59.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/communication\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"communication\",\n \"requires_python\": + \">=3.7\",\n \"run_requires\": [\n {\n + \ \"requires\": [\n \"azure-communication-chat + (>=1.3.0)\",\n \"azure-communication-chat>=1.3.0\",\n + \ \"azure-communication-email (>=1.0.0)\",\n + \ \"azure-communication-email>=1.0.0\",\n \"azure-communication-identity + (>=1.2.0)\",\n \"azure-communication-identity>=1.2.0\",\n + \ \"azure-communication-phonenumbers (>=1.2.0b3)\",\n + \ \"azure-communication-phonenumbers>=1.2.0b3\",\n + \ \"azure-communication-rooms (>=1.1.0)\",\n + \ \"azure-communication-rooms>=1.1.0\",\n \"azure-communication-sms\",\n + \ \"azure-communication-sms\",\n \"azure-core\",\n + \ \"azure-core\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools CommunicationServiceManagementClient + Extension\",\n \"version\": \"1.11.2\"\n },\n + \ \"sha256Digest\": \"236b36928042544e660ec751e06c079109959eddfae6d4083837841a90d7f2c0\"\n \ }\n ],\n \"compute-diagnostic-rp\": [\n {\n \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/compute_diagnostic_rp-1.0.0b1-py3-none-any.whl\",\n \ \"filename\": \"compute_diagnostic_rp-1.0.0b1-py3-none-any.whl\",\n @@ -18924,6 +20455,107 @@ interactions: \ \"summary\": \"Microsoft Azure Command-Line Tools Confidential Container Security Policy Generator Extension\",\n \"version\": \"0.3.5\"\n },\n \"sha256Digest\": \"b8f8dccd506a69c8a3470f17c864d079b55580cc2f4f5fbc96db2f45c61fb651\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-0.3.6-py3-none-any.whl\",\n + \ \"filename\": \"confcom-0.3.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.26.2\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"acccli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"deepdiff (==6.3.0)\",\n \"deepdiff==6.3.0\",\n + \ \"docker (>=6.1.0)\",\n \"docker>=6.1.0\",\n + \ \"tqdm (==4.65.0)\",\n \"tqdm==4.65.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Confidential + Container Security Policy Generator Extension\",\n \"version\": + \"0.3.6\"\n },\n \"sha256Digest\": \"4374d76ff30f3ccd484af76e9e184a4e27d4461d78e23f7872ae3b3a6f689844\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"confcom-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.26.2\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"acccli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"PyYAML (>=6.0.1)\",\n \"PyYAML>=6.0.1\",\n + \ \"deepdiff (==6.3.0)\",\n \"deepdiff==6.3.0\",\n + \ \"docker (>=6.1.0)\",\n \"docker>=6.1.0\",\n + \ \"tqdm (==4.65.0)\",\n \"tqdm==4.65.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Confidential + Container Security Policy Generator Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"73823e10958a114b4aca84c330b4debcc650c4635e74c568679b6c32c356411d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confcom-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"confcom-1.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.26.2\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"acccli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/confcom\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"confcom\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"PyYAML (>=6.0.1)\",\n \"PyYAML>=6.0.1\",\n + \ \"deepdiff (==6.3.0)\",\n \"deepdiff==6.3.0\",\n + \ \"docker (>=6.1.0)\",\n \"docker>=6.1.0\",\n + \ \"tqdm (==4.65.0)\",\n \"tqdm==4.65.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Confidential + Container Security Policy Generator Extension\",\n \"version\": + \"1.0.1\"\n },\n \"sha256Digest\": \"6b54ba325594ccbd47874ff2f0696e2e4cf55eaf82e071cd29493f04ae9466af\"\n \ }\n ],\n \"confidentialledger\": [\n {\n \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/confidentialledger-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"confidentialledger-0.1.0-py3-none-any.whl\",\n @@ -21209,10 +22841,175 @@ interactions: (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s - Extension\",\n \"version\": \"1.6.7\"\n },\n - \ \"sha256Digest\": \"e9729cfadfb96f6842e880df2fc784800f5b6c65f2252c69c6167290f0862a2d\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.6.8-py2.py3-none-any.whl\",\n - \ \"filename\": \"connectedk8s-1.6.8-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"1.6.7\"\n },\n + \ \"sha256Digest\": \"e9729cfadfb96f6842e880df2fc784800f5b6c65f2252c69c6167290f0862a2d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.6.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.6.8-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.6.8\"\n },\n + \ \"sha256Digest\": \"4acaa0c9e22f6d4ecf97af1ae623972e2e76ed2b2f0ced0999a83a4de5ebecb9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.7.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.7.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.7.0\"\n },\n + \ \"sha256Digest\": \"27494835cb177bd230126a21ebdc4efb0a33389832073d3fcab1a75661943804\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.7.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.7.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.7.1\"\n },\n + \ \"sha256Digest\": \"56428abd1dc513cdb2602a1c23fc4d566d854597f52b0d7dbe865be29d308806\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.7.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.7.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.7.2\"\n },\n + \ \"sha256Digest\": \"049e559a8db6fa28b444d3ec6478157da18e8abe69f3500f31783535cd30bddc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.7.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.7.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.38.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.7.3\"\n },\n + \ \"sha256Digest\": \"66a5ac7202ac385340423c5a62a8e53dc27a2e670fbc0e336e2d70265c5a5d6e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.8.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.8.0-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n @@ -21242,10 +23039,10 @@ interactions: (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s - Extension\",\n \"version\": \"1.6.8\"\n },\n - \ \"sha256Digest\": \"4acaa0c9e22f6d4ecf97af1ae623972e2e76ed2b2f0ced0999a83a4de5ebecb9\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.7.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"connectedk8s-1.7.0-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"1.8.0\"\n },\n + \ \"sha256Digest\": \"b2e91cf13a3385499e1414fd5e8fde46b2a62bb976f92649fdba2bb7bb6a2bfe\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.9.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.9.0-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n @@ -21275,10 +23072,10 @@ interactions: (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s - Extension\",\n \"version\": \"1.7.0\"\n },\n - \ \"sha256Digest\": \"27494835cb177bd230126a21ebdc4efb0a33389832073d3fcab1a75661943804\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.7.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"connectedk8s-1.7.1-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"1.9.0\"\n },\n + \ \"sha256Digest\": \"746df54b46d9952fe85fbca64ae5dc5e2ddfca2f2c5120f5314b8f45f9900832\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.9.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.9.1-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n @@ -21308,10 +23105,10 @@ interactions: (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s - Extension\",\n \"version\": \"1.7.1\"\n },\n - \ \"sha256Digest\": \"56428abd1dc513cdb2602a1c23fc4d566d854597f52b0d7dbe865be29d308806\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.7.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"connectedk8s-1.7.2-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"1.9.1\"\n },\n + \ \"sha256Digest\": \"bde5a26cfbffa0652b39bc00e8ee3fc4c6b8f9b93b103933cb1f44d55fe22f4f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.9.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.9.2-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.minCliCoreVersion\": \"2.38.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n @@ -21341,12 +23138,12 @@ interactions: (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s - Extension\",\n \"version\": \"1.7.2\"\n },\n - \ \"sha256Digest\": \"049e559a8db6fa28b444d3ec6478157da18e8abe69f3500f31783535cd30bddc\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.7.3-py2.py3-none-any.whl\",\n - \ \"filename\": \"connectedk8s-1.7.3-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"1.9.2\"\n },\n + \ \"sha256Digest\": \"82ec6a3628e9e7308a1fb9752530f0ae8654bd282591e00c8655200bf3a5e70d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.9.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.9.3-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.38.0\",\n \"classifiers\": [\n \"Development + \"2.64.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -21374,12 +23171,12 @@ interactions: (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s - Extension\",\n \"version\": \"1.7.3\"\n },\n - \ \"sha256Digest\": \"66a5ac7202ac385340423c5a62a8e53dc27a2e670fbc0e336e2d70265c5a5d6e\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.8.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"connectedk8s-1.8.0-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"1.9.3\"\n },\n + \ \"sha256Digest\": \"e0eb8df763d7cc85a0396856bbf4b8a1f43801b2131fa5d21b5b2850e96363ef\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.10.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.10.0-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.38.0\",\n \"classifiers\": [\n \"Development + \"2.64.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -21404,11 +23201,44 @@ interactions: \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome - (==3.14.1)\",\n \"pycryptodome==3.14.1\"\n + (==3.20.0)\",\n \"pycryptodome==3.20.0\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s - Extension\",\n \"version\": \"1.8.0\"\n },\n - \ \"sha256Digest\": \"b2e91cf13a3385499e1414fd5e8fde46b2a62bb976f92649fdba2bb7bb6a2bfe\"\n + Extension\",\n \"version\": \"1.10.0\"\n },\n + \ \"sha256Digest\": \"0f6cd82b5357222d5213d5140522b1683cef2974a9b39eb3b97d10bee3a8b636\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-1.10.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedk8s-1.10.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.64.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/markdown\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"k8connect@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedk8s\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"connectedk8s\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-mgmt-hybridcompute (==7.0.0)\",\n + \ \"azure-mgmt-hybridcompute==7.0.0\",\n \"kubernetes + (==24.2.0)\",\n \"kubernetes==24.2.0\",\n \"pycryptodome + (==3.20.0)\",\n \"pycryptodome==3.20.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Connectedk8s + Extension\",\n \"version\": \"1.10.1\"\n },\n + \ \"sha256Digest\": \"34c5a8f4b06fe910c6b44d3e51a3ef04f7bc056f0912f4add9a782b5898ebc58\"\n \ }\n ],\n \"connectedmachine\": [\n {\n \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connectedmachine-0.1.1-py2.py3-none-any.whl\",\n \ \"filename\": \"connectedmachine-0.1.1-py2.py3-none-any.whl\",\n @@ -21662,6 +23492,58 @@ interactions: \"connectedmachine\",\n \"summary\": \"Microsoft Azure Command-Line Tools ConnectedMachine Extension\",\n \"version\": \"1.0.0b1\"\n },\n \"sha256Digest\": \"f829b171bc489bd1bffea518040acc74608581dae798f4b23bedfe8bf7445383\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-1.0.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedmachine\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConnectedMachine Extension\",\n \"version\": + \"1.0.0b2\"\n },\n \"sha256Digest\": \"8b8c4340c4c6552e3826220ffb95bf619447675b0469304b71fa80e2e4e31c81\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedmachine-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"connectedmachine-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 5 - Production/Stable\",\n \"Intended Audience + :: Developers\",\n \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedmachine\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"connectedmachine\",\n \"summary\": \"Microsoft Azure + Command-Line Tools ConnectedMachine Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"149eead49d0c046f778ea4d99d78448f38157b86ea591d1eea545f8896596511\"\n \ }\n ],\n \"connectedvmware\": [\n {\n \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-0.1.2-py2.py3-none-any.whl\",\n \ \"filename\": \"connectedvmware-0.1.2-py2.py3-none-any.whl\",\n @@ -22209,26 +24091,32 @@ interactions: \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line Tools Connectedvmware Extension\",\n \"version\": \"1.1.1\"\n \ },\n \"sha256Digest\": \"28ef4a31c805d52aa16e749ec1382591b3089e970d8741deaf401a86c4e5e6ad\"\n - \ }\n ],\n \"connection-monitor-preview\": [\n {\n - \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/connection_monitor_preview-0.1.0-py2.py3-none-any.whl\",\n - \ \"filename\": \"connection_monitor_preview-0.1.0-py2.py3-none-any.whl\",\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/connectedvmware-1.2.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"connectedvmware-1.2.0-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.maxCliCoreVersion\": \"2.0.82\",\n \"azext.minCliCoreVersion\": - \"2.0.80\",\n \"extensions\": {\n \"python.details\": - {\n \"contacts\": [\n {\n - \ \"email\": \"azpycli@microsoft.com\",\n - \ \"name\": \"Microsoft Corporation\",\n - \ \"role\": \"author\"\n }\n - \ ],\n \"document_names\": - {\n \"description\": \"DESCRIPTION.rst\"\n - \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/connection-monitor-preview\"\n + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"arcprivatecloudsfte@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/connectedvmware\"\n \ }\n }\n },\n \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"connection-monitor-preview\",\n \"summary\": \"Microsoft - Azure Command-Line Connection Monitor V2 Extension\",\n \"version\": - \"0.1.0\"\n },\n \"sha256Digest\": \"9a796d5187571990d27feb9efeedde38c194f13ea21cbf9ec06131196bfd821d\"\n + \"connectedvmware\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Connectedvmware Extension\",\n \"version\": \"1.2.0\"\n + \ },\n \"sha256Digest\": \"b731a821c609aae8bfab7e0470b342b9179e7e0c65482f4a432a60d87a4c395f\"\n \ }\n ],\n \"containerapp\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.1.0-py2.py3-none-any.whl\",\n \ \"filename\": \"containerapp-0.1.0-py2.py3-none-any.whl\",\n @@ -23196,12 +25084,137 @@ interactions: (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": [\n {\n \"requires\": [\n - \ \"pycomposefile (>=0.0.29)\"\n ]\n - \ }\n ],\n \"summary\": - \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": - \"0.3.30\"\n },\n \"sha256Digest\": \"1d36c948a9974cf4ddac58739c87e4c83dcd9b12a377ef1232091cb1539ffb04\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.31-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.31-py2.py3-none-any.whl\",\n + \ \"pycomposefile (>=0.0.29)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.30\"\n },\n \"sha256Digest\": \"1d36c948a9974cf4ddac58739c87e4c83dcd9b12a377ef1232091cb1539ffb04\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.31-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.31-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycomposefile (>=0.0.29)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.31\"\n },\n \"sha256Digest\": \"c32a6bcf2318889ca0096e428f5d612ec32a00871219c03e200bcbe109238e19\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.32-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.32-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycomposefile (>=0.0.29)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.32\"\n },\n \"sha256Digest\": \"21ca6a15900e60b7fb6c586f9ae9661ee2a5245661dd265016b0ef214bd3fb90\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.33-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.33-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycomposefile (>=0.0.29)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": + \"0.3.33\"\n },\n \"sha256Digest\": \"8385c13f0f938930faaeed4dad67c1cc03b601bfb626e86e29bf87a310270166\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.34-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.34-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"pycomposefile + (>=0.0.29)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.34\"\n },\n + \ \"sha256Digest\": \"fee4dbe509a581c8a72f269baeaa50fbf8459d1b13391446c74300283d23919f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.35-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.35-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -23227,12 +25240,13 @@ interactions: (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": [\n {\n \"requires\": [\n - \ \"pycomposefile (>=0.0.29)\"\n ]\n - \ }\n ],\n \"summary\": - \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": - \"0.3.31\"\n },\n \"sha256Digest\": \"c32a6bcf2318889ca0096e428f5d612ec32a00871219c03e200bcbe109238e19\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.32-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.32-py2.py3-none-any.whl\",\n + \ \"docker\",\n \"pycomposefile + (>=0.0.29)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.35\"\n },\n + \ \"sha256Digest\": \"980914fb40826959f0bd2e8e89a7671c977cc179d7728e43a602cff9f1ff193e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.36-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.36-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -23258,12 +25272,13 @@ interactions: (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": [\n {\n \"requires\": [\n - \ \"pycomposefile (>=0.0.29)\"\n ]\n - \ }\n ],\n \"summary\": - \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": - \"0.3.32\"\n },\n \"sha256Digest\": \"21ca6a15900e60b7fb6c586f9ae9661ee2a5245661dd265016b0ef214bd3fb90\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.33-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.33-py2.py3-none-any.whl\",\n + \ \"docker\",\n \"pycomposefile + (>=0.0.29)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.36\"\n },\n + \ \"sha256Digest\": \"233c449a1dd754fe559fbbc4b2cb1ce148d791fdc28b4b15fdc0349b40df13a3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.37-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.37-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -23289,12 +25304,13 @@ interactions: (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": [\n {\n \"requires\": [\n - \ \"pycomposefile (>=0.0.29)\"\n ]\n - \ }\n ],\n \"summary\": - \"Microsoft Azure Command-Line Tools Containerapp Extension\",\n \"version\": - \"0.3.33\"\n },\n \"sha256Digest\": \"8385c13f0f938930faaeed4dad67c1cc03b601bfb626e86e29bf87a310270166\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.34-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.34-py2.py3-none-any.whl\",\n + \ \"docker\",\n \"pycomposefile + (>=0.0.29)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.37\"\n },\n + \ \"sha256Digest\": \"2c0f948ff21826d8895c0049bb76e3945644c149f066cfc6ecf22e001d312d9f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.38-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.38-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -23323,10 +25339,10 @@ interactions: \ \"docker\",\n \"pycomposefile (>=0.0.29)\"\n ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.34\"\n },\n - \ \"sha256Digest\": \"fee4dbe509a581c8a72f269baeaa50fbf8459d1b13391446c74300283d23919f\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.35-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.35-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"0.3.38\"\n },\n + \ \"sha256Digest\": \"b896c8f0d4946af5fea9831d2f3c10831add4a25fdb94f23401ed73a79e778de\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.39-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.39-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -23346,7 +25362,7 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n \ }\n }\n },\n \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": @@ -23355,10 +25371,10 @@ interactions: \ \"docker\",\n \"pycomposefile (>=0.0.29)\"\n ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.35\"\n },\n - \ \"sha256Digest\": \"980914fb40826959f0bd2e8e89a7671c977cc179d7728e43a602cff9f1ff193e\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.36-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.36-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"0.3.39\"\n },\n + \ \"sha256Digest\": \"03812ad93bb642de2f4abb75445785d9b8b5a88ae9f6efeef2a3a670244390ec\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.40-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.40-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -23378,19 +25394,20 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n \ }\n }\n },\n \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": [\n {\n \"requires\": [\n - \ \"docker\",\n \"pycomposefile - (>=0.0.29)\"\n ]\n }\n ],\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.36\"\n },\n - \ \"sha256Digest\": \"233c449a1dd754fe559fbbc4b2cb1ce148d791fdc28b4b15fdc0349b40df13a3\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.37-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.37-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"0.3.40\"\n },\n + \ \"sha256Digest\": \"a142df84576d2e676e648b95134012f19182d1ac50867406eb9c41fd604e8eaf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.41-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.41-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -23410,19 +25427,20 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n \ }\n }\n },\n \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": [\n {\n \"requires\": [\n - \ \"docker\",\n \"pycomposefile - (>=0.0.29)\"\n ]\n }\n ],\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.37\"\n },\n - \ \"sha256Digest\": \"2c0f948ff21826d8895c0049bb76e3945644c149f066cfc6ecf22e001d312d9f\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.38-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.38-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"0.3.41\"\n },\n + \ \"sha256Digest\": \"071eaf5d68423948b0745d9b763ac06ce3414fb015ff19cfcd3f62acf181cfde\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.42-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.42-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -23442,21 +25460,22 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n \ }\n }\n },\n \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": [\n {\n \"requires\": [\n - \ \"docker\",\n \"pycomposefile - (>=0.0.29)\"\n ]\n }\n ],\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.38\"\n },\n - \ \"sha256Digest\": \"b896c8f0d4946af5fea9831d2f3c10831add4a25fdb94f23401ed73a79e778de\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.39-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.39-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"0.3.42\"\n },\n + \ \"sha256Digest\": \"15d05517859e65c80c8aa3dd5a4b339b1113f4b0be449a726c8f12204d5e0b8f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.43-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.43-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -23480,15 +25499,16 @@ interactions: (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": [\n {\n \"requires\": [\n - \ \"docker\",\n \"pycomposefile - (>=0.0.29)\"\n ]\n }\n ],\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.39\"\n },\n - \ \"sha256Digest\": \"03812ad93bb642de2f4abb75445785d9b8b5a88ae9f6efeef2a3a670244390ec\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.40-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.40-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"0.3.43\"\n },\n + \ \"sha256Digest\": \"ae86a2831a5fbc3046cdbeb684590cbf4d9d21f7840a94fe54824d899f37205d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.44-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.44-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -23516,12 +25536,12 @@ interactions: \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.40\"\n },\n - \ \"sha256Digest\": \"a142df84576d2e676e648b95134012f19182d1ac50867406eb9c41fd604e8eaf\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.41-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.41-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"0.3.44\"\n },\n + \ \"sha256Digest\": \"d7e136b4c9e9221c12abc53a243638aad571c36243ef582b7db91c6b419a3a52\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.45-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.45-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -23549,12 +25569,12 @@ interactions: \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.41\"\n },\n - \ \"sha256Digest\": \"071eaf5d68423948b0745d9b763ac06ce3414fb015ff19cfcd3f62acf181cfde\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.42-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.42-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"0.3.45\"\n },\n + \ \"sha256Digest\": \"440016e65a14183896278ad83ec8161feff21fb7f432ececa5891db778770b2c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.46-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.46-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.45.0\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -23582,10 +25602,10 @@ interactions: \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.42\"\n },\n - \ \"sha256Digest\": \"15d05517859e65c80c8aa3dd5a4b339b1113f4b0be449a726c8f12204d5e0b8f\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.43-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.43-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"0.3.46\"\n },\n + \ \"sha256Digest\": \"29b5a105839e893b51ae5cb3ea77e3df1e6827ad6660f3d31f0598a107415138\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.47-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.47-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -23615,10 +25635,10 @@ interactions: \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.43\"\n },\n - \ \"sha256Digest\": \"ae86a2831a5fbc3046cdbeb684590cbf4d9d21f7840a94fe54824d899f37205d\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.44-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.44-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"0.3.47\"\n },\n + \ \"sha256Digest\": \"d13c72a0c98a03417661dd8c502df88b1344efe7c0ef009ae5ea2131a755ae1d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.48-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.48-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -23648,10 +25668,10 @@ interactions: \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.44\"\n },\n - \ \"sha256Digest\": \"d7e136b4c9e9221c12abc53a243638aad571c36243ef582b7db91c6b419a3a52\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.45-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.45-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"0.3.48\"\n },\n + \ \"sha256Digest\": \"bcdc3a88797996d2171bbf336e26662bea19990e2adfdcdb1199796326e40496\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.49-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.49-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -23681,10 +25701,10 @@ interactions: \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.45\"\n },\n - \ \"sha256Digest\": \"440016e65a14183896278ad83ec8161feff21fb7f432ececa5891db778770b2c\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.46-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.46-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"0.3.49\"\n },\n + \ \"sha256Digest\": \"73e5d4282b505f0b0797101e15e184907767fe9e8b854dc66a21c1abc1f807f7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.50-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.50-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -23714,10 +25734,76 @@ interactions: \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.46\"\n },\n - \ \"sha256Digest\": \"29b5a105839e893b51ae5cb3ea77e3df1e6827ad6660f3d31f0598a107415138\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.47-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.47-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"0.3.50\"\n },\n + \ \"sha256Digest\": \"847139ab567ffed02e7844a9a4c6c2f2032e650c673343234674e0e7ab53c58d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.51-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.51-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.51\"\n },\n + \ \"sha256Digest\": \"963cea12deec4b900936225d5cab1e8c5667b35cf9651b5f2e59fff107a13f82\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.52-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.52-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/containerapp\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"containerapp\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"docker\",\n \"docker\",\n + \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp + Extension\",\n \"version\": \"0.3.52\"\n },\n + \ \"sha256Digest\": \"04edd05ecfe1b2ae5d1485efb32a2536a97021b6265ecd3ab6b0b635aa8cc510\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.53-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.53-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -23747,12 +25833,12 @@ interactions: \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.47\"\n },\n - \ \"sha256Digest\": \"d13c72a0c98a03417661dd8c502df88b1344efe7c0ef009ae5ea2131a755ae1d\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.48-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.48-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"0.3.53\"\n },\n + \ \"sha256Digest\": \"f9b4f3928469efcc1bfbc98cd906d9d92e72617e5c21cf3ade8b37651607c3e1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.54-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.54-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.62.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -23780,12 +25866,12 @@ interactions: \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.48\"\n },\n - \ \"sha256Digest\": \"bcdc3a88797996d2171bbf336e26662bea19990e2adfdcdb1199796326e40496\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.49-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.49-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"0.3.54\"\n },\n + \ \"sha256Digest\": \"a9e51cef9e7d1c59a711c762867dca4a10273450af48701c3b65dd59e34bbcbc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.55-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-0.3.55-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.62.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -23813,12 +25899,12 @@ interactions: \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.49\"\n },\n - \ \"sha256Digest\": \"73e5d4282b505f0b0797101e15e184907767fe9e8b854dc66a21c1abc1f807f7\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.50-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.50-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"0.3.55\"\n },\n + \ \"sha256Digest\": \"d6971ccf8ca73e03df7e123fa7c85e5e63235bb1ac1c274c26bbc1f509d68115\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-1.0.0b1-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.62.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -23846,12 +25932,12 @@ interactions: \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.50\"\n },\n - \ \"sha256Digest\": \"847139ab567ffed02e7844a9a4c6c2f2032e650c673343234674e0e7ab53c58d\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.51-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.51-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"d80b83b0e22770925c24bca150c84182376b7b0aff9b6f28498d769dc8618b45\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-1.0.0b2-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-1.0.0b2-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.62.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -23879,12 +25965,12 @@ interactions: \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.51\"\n },\n - \ \"sha256Digest\": \"963cea12deec4b900936225d5cab1e8c5667b35cf9651b5f2e59fff107a13f82\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.52-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.52-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"1.0.0b2\"\n },\n + \ \"sha256Digest\": \"a20220034614c763d21a7bb1f0551f94139dd4f71b4dbfa30905a1a7914dc62b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-1.0.0b3-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-1.0.0b3-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.62.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -23912,12 +25998,12 @@ interactions: \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.52\"\n },\n - \ \"sha256Digest\": \"04edd05ecfe1b2ae5d1485efb32a2536a97021b6265ecd3ab6b0b635aa8cc510\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-0.3.53-py2.py3-none-any.whl\",\n - \ \"filename\": \"containerapp-0.3.53-py2.py3-none-any.whl\",\n + Extension\",\n \"version\": \"1.0.0b3\"\n },\n + \ \"sha256Digest\": \"4a239269a2f864a775bd28cfb04570d9613ff8aada3fc9a18cd07efbd979b5e5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/containerapp-1.0.0b4-py2.py3-none-any.whl\",\n + \ \"filename\": \"containerapp-1.0.0b4-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.62.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -23945,8 +26031,8 @@ interactions: \ \"pycomposefile (>=0.0.29)\",\n \"pycomposefile>=0.0.29\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Containerapp - Extension\",\n \"version\": \"0.3.53\"\n },\n - \ \"sha256Digest\": \"f9b4f3928469efcc1bfbc98cd906d9d92e72617e5c21cf3ade8b37651607c3e1\"\n + Extension\",\n \"version\": \"1.0.0b4\"\n },\n + \ \"sha256Digest\": \"4d6a5e7a4141b3ca00d38c0698f87d79a157d0dd3fd8dbf735544efeeb7be261\"\n \ }\n ],\n \"cosmosdb-preview\": [\n {\n \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-0.1.0-py2.py3-none-any.whl\",\n \ \"filename\": \"cosmosdb_preview-0.1.0-py2.py3-none-any.whl\",\n @@ -24728,6 +26814,32 @@ interactions: \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": \"1.0.1\"\n },\n \"sha256Digest\": \"c540018bc5da1252ec3e3e564552650d6af08f349f3ff339be398a7983caf2a9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/cosmosdb_preview-1.1.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"cosmosdb_preview-1.1.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.17.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"kakhandr@microsoft.com\",\n \"name\": + \"Kalyan khandrika\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/cosmosdb-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"cosmosdb-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Cosmosdb-preview Extension\",\n \"version\": + \"1.1.0b1\"\n },\n \"sha256Digest\": \"0fc11b2fcdd75c4868cfc43ec4be19c2128fd1d7b616b61e3364c3c1a0c4c1da\"\n \ }\n ],\n \"costmanagement\": [\n {\n \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/costmanagement-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"costmanagement-0.1.0-py3-none-any.whl\",\n @@ -24833,6 +26945,32 @@ interactions: \"costmanagement\",\n \"summary\": \"Microsoft Azure Command-Line Tools CostManagementClient Extension\",\n \"version\": \"0.3.0\"\n },\n \"sha256Digest\": \"5661a2082ecca000b0c764dc92585e2aa601ccd5eeeb296397533cf4da814cf6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/costmanagement-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"costmanagement-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/costmanagement\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"costmanagement\",\n \"summary\": \"Microsoft Azure Command-Line + Tools CostManagementClient Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"6e5e053d05bad6ad6305bd024f51e355e60fde8bb6a03350dfd81c25437d2e45\"\n \ }\n ],\n \"csvmware\": [\n {\n \"downloadUrl\": \"https://github.com/Azure/az-csvmware-cli/releases/download/0.3.0/csvmware-0.3.0-py2.py3-none-any.whl\",\n \ \"filename\": \"csvmware-0.3.0-py2.py3-none-any.whl\",\n \"metadata\": @@ -25611,6 +27749,31 @@ interactions: \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line Tools DatabricksClient Extension\",\n \"version\": \"1.0.0\"\n \ },\n \"sha256Digest\": \"a23ded367e80240eea828a3234801d4d989539ae4a5ecf246bfc6acb054a2544\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/databricks-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"databricks-1.0.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/databricks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"databricks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DatabricksClient Extension\",\n \"version\": \"1.0.1\"\n + \ },\n \"sha256Digest\": \"55165d7435cd7a0dc87587e82fc202d792a5f28c9c44398655b0a4770d038c30\"\n \ }\n ],\n \"datadog\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datadog-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"datadog-0.1.0-py3-none-any.whl\",\n \"metadata\": @@ -26255,6 +28418,32 @@ interactions: \"datamigration\",\n \"summary\": \"Microsoft Azure Command-Line Tools DataMigrationManagementClient Extension\",\n \"version\": \"1.0.0b1\"\n },\n \"sha256Digest\": \"9d1ac8c7046e23387696561747be2e8f62e879a4a305f8b20ccd19460a29db0d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/datamigration-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"datamigration-1.0.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/datamigration\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"datamigration\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataMigrationManagementClient Extension\",\n \"version\": + \"1.0.0b2\"\n },\n \"sha256Digest\": \"8901b5664a95e665781698bc02ee94b4297c82ac9fdfab99dd4f13bac1c0923e\"\n \ }\n ],\n \"dataprotection\": [\n {\n \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"dataprotection-0.1.0-py3-none-any.whl\",\n @@ -26889,6 +29078,84 @@ interactions: \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line Tools DataProtectionClient Extension\",\n \"version\": \"1.5.1\"\n },\n \"sha256Digest\": \"2089e0c5ce213e0d79148cc2724c28679d93dc70a1e7290ee2ec99e5e0eed513\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-1.5.2-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-1.5.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"1.5.2\"\n },\n \"sha256Digest\": \"534ba81cbfece53352e1862d4bfadc8a5b3fd0449178c482e13fc1925970dac3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-1.5.3-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-1.5.3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"1.5.3\"\n },\n \"sha256Digest\": \"4671ce89e39065695f21626350dfcad5438bdbefc714cf35e85ee5eab0f96661\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dataprotection-1.5.4-py3-none-any.whl\",\n + \ \"filename\": \"dataprotection-1.5.4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dataprotection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dataprotection\",\n \"summary\": \"Microsoft Azure Command-Line + Tools DataProtectionClient Extension\",\n \"version\": + \"1.5.4\"\n },\n \"sha256Digest\": \"bc0c95aefd1db5ed4a8a8130ae2105f2836aac4c0ddd648a0c2fe1c93b9d42d8\"\n \ }\n ],\n \"datashare\": [\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/datashare-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"datashare-0.1.0-py3-none-any.whl\",\n \"metadata\": @@ -27367,14 +29634,80 @@ interactions: (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": [\n {\n \"requires\": [\n - \ \"Cython (==0.29.17)\",\n \"mysql-connector-python - (==8.0.14)\",\n \"psycopg2-binary (~=2.9.6)\",\n - \ \"pymssql (==2.2.7)\"\n ]\n - \ }\n ],\n \"summary\": - \"Additional commands to simplify Azure Database workflows.\",\n \"version\": - \"0.2.9\"\n },\n \"sha256Digest\": \"f700b75e4a127d6111134e7af5068a6d6c379c8e6ce591a1e20ae31adc766c36\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-1.0.0b1-py2.py3-none-any.whl\",\n - \ \"filename\": \"db_up-1.0.0b1-py2.py3-none-any.whl\",\n \"metadata\": + \ \"Cython (==0.29.17)\",\n \"mysql-connector-python + (==8.0.14)\",\n \"psycopg2-binary (~=2.9.6)\",\n + \ \"pymssql (==2.2.7)\"\n ]\n + \ }\n ],\n \"summary\": + \"Additional commands to simplify Azure Database workflows.\",\n \"version\": + \"0.2.9\"\n },\n \"sha256Digest\": \"f700b75e4a127d6111134e7af5068a6d6c379c8e6ce591a1e20ae31adc766c36\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-1.0.0b1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"Cython==0.29.17\",\n + \ \"mysql-connector-python (==8.0.14)\",\n \"mysql-connector-python==8.0.14\",\n + \ \"psycopg2-binary (~=2.9.6)\",\n \"psycopg2-binary~=2.9.6\",\n + \ \"pymssql (==2.2.7)\",\n \"pymssql==2.2.7\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"162a88040f8361c787a84698b4eb3850c3b4262dd9053f8dfb6bf4636a870e46\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-1.0.0b2-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-1.0.0b2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.0.46\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"Cython==0.29.17\",\n + \ \"mysql-connector-python (==8.0.14)\",\n \"mysql-connector-python==8.0.14\",\n + \ \"psycopg2-binary (~=2.9.6)\",\n \"psycopg2-binary~=2.9.6\",\n + \ \"pymssql (==2.2.7)\",\n \"pymssql==2.2.7\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"1.0.0b2\"\n },\n + \ \"sha256Digest\": \"3086dfa710fbb9c372148c1829cee0cdf47c89f4f1d9cd0e0d1f8c0b42e85646\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-1.0.0b3-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-1.0.0b3-py2.py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n @@ -27404,8 +29737,67 @@ interactions: \ \"pymssql (==2.2.7)\",\n \"pymssql==2.2.7\"\n \ ]\n }\n ],\n \ \"summary\": \"Additional commands to simplify Azure Database - workflows.\",\n \"version\": \"1.0.0b1\"\n },\n - \ \"sha256Digest\": \"162a88040f8361c787a84698b4eb3850c3b4262dd9053f8dfb6bf4636a870e46\"\n + workflows.\",\n \"version\": \"1.0.0b3\"\n },\n + \ \"sha256Digest\": \"4d660a65749c5db769a973aadd6b9a7b3e65c4472345357847a6b6a06fbf11ad\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/db_up-1.0.0b4-py2.py3-none-any.whl\",\n + \ \"filename\": \"db_up-1.0.0b4-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/db-up\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"db-up\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"Cython (==0.29.17)\",\n \"Cython==0.29.17\",\n + \ \"mysql-connector-python (==8.0.14)\",\n \"mysql-connector-python==8.0.14\",\n + \ \"psycopg2-binary (~=2.9.6)\",\n \"psycopg2-binary~=2.9.6\",\n + \ \"pymssql (==2.2.7)\",\n \"pymssql==2.2.7\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Additional commands to simplify Azure Database + workflows.\",\n \"version\": \"1.0.0b4\"\n },\n + \ \"sha256Digest\": \"1a18c78b29fc58a2f3ca537d16f213bd4a879df1c8689df439c8013bef453f73\"\n + \ }\n ],\n \"deidservice\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/deidservice-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"deidservice-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/deidservice\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"deidservice\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Deidservice Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"149c39f352f3acb95cb6d33bd0fb9627032cf01a1aa320acb9dd712744597cd0\"\n \ }\n ],\n \"deploy-to-azure\": [\n {\n \ \"downloadUrl\": \"https://github.com/Azure/deploy-to-azure-cli-extension/releases/download/20200318.1/deploy_to_azure-0.2.0-py2.py3-none-any.whl\",\n \ \"filename\": \"deploy_to_azure-0.2.0-py2.py3-none-any.whl\",\n @@ -28369,6 +30761,33 @@ interactions: \"dns-resolver\",\n \"summary\": \"Microsoft Azure Command-Line Tools DnsResolverManagementClient Extension\",\n \"version\": \"0.2.0\"\n },\n \"sha256Digest\": \"1c4bb8216e509c2f08fa75c45930ec377768326f30cb9ab125842aa9352c6e2e\"\n + \ }\n ],\n \"durabletask\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/durabletask-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"durabletask-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/durabletask\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"durabletask\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Durabletask Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"d7a929b294928df79d8312fbf6af72c5d928e304c4a7b37daf3ff772667dfb25\"\n \ }\n ],\n \"dynatrace\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dynatrace-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"dynatrace-0.1.0-py3-none-any.whl\",\n \"metadata\": @@ -28396,6 +30815,58 @@ interactions: \"dynatrace\",\n \"summary\": \"Microsoft Azure Command-Line Tools Dynatrace Extension.\",\n \"version\": \"0.1.0\"\n \ },\n \"sha256Digest\": \"112a7e423461d1b6f7c385fe8b73b4f2b850e2570c35a54a4bbcc2e87afec661\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dynatrace-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"dynatrace-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dynatrace\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dynatrace\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Dynatrace Extension.\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"81a08ebad9d9305fc96f58030fe1336553c46150ebd9cdb9febbe050baa4664c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/dynatrace-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"dynatrace-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/dynatrace\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"dynatrace\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Dynatrace Extension.\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"091f40d8764245bcb9667e422d4dd372114c9f00a72a080f9c8ef92b43c518d6\"\n \ }\n ],\n \"edgeorder\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/edgeorder-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"edgeorder-0.1.0-py3-none-any.whl\",\n \"metadata\": @@ -28529,6 +31000,32 @@ interactions: \"elastic\",\n \"summary\": \"Microsoft Azure Command-Line Tools MicrosoftElastic Extension\",\n \"version\": \"1.0.0b2\"\n \ },\n \"sha256Digest\": \"1d99dbcc10b99185b4cd9b64a8835d80b424226e5cf5d40b3e3ae1d435532657\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/elastic-1.0.0b3-py3-none-any.whl\",\n + \ \"filename\": \"elastic-1.0.0b3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/elastic\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"elastic\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftElastic Extension\",\n \"version\": \"1.0.0b3\"\n + \ },\n \"sha256Digest\": \"2f3ae430d3c34dd4007c8c5a8374963568cc23558872464242811cc5a26e2de7\"\n \ }\n ],\n \"elastic-san\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/elastic_san-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"elastic_san-0.1.0-py3-none-any.whl\",\n \"metadata\": @@ -28634,6 +31131,57 @@ interactions: \"elastic-san\",\n \"summary\": \"Microsoft Azure Command-Line Tools ElasticSan Extension.\",\n \"version\": \"1.0.0\"\n \ },\n \"sha256Digest\": \"f7665c05f0e14785d15b199cd798f3f91b55bc974d5f438957dd7b36690da6c2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/elastic_san-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"elastic_san-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/elastic-san\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"elastic-san\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ElasticSan Extension.\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"aba0ea3f82a551b98a797bce90df3e580493bbeb9a19fb4dc3dac20bdae92f34\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/elastic_san-1.2.0b1-py3-none-any.whl\",\n + \ \"filename\": \"elastic_san-1.2.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/elastic-san\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"elastic-san\",\n \"summary\": \"Microsoft Azure Command-Line + Tools ElasticSan Extension.\",\n \"version\": \"1.2.0b1\"\n + \ },\n \"sha256Digest\": \"52fb72b1dc50b134ce964488edec554c7d8449f841e47d8b355d9f1ac710ce60\"\n \ }\n ],\n \"eventgrid\": [\n {\n \"downloadUrl\": \"https://eventgridcliextension.blob.core.windows.net/cli/eventgrid-0.4.4-py2.py3-none-any.whl\",\n \ \"filename\": \"eventgrid-0.4.4-py2.py3-none-any.whl\",\n @@ -28825,9 +31373,35 @@ interactions: \"express-route-cross-connection\",\n \"summary\": \"Manage customer ExpressRoute circuits using an ExpressRoute cross-connection.\",\n \ \"version\": \"0.1.1\"\n },\n \"sha256Digest\": - \"b83f723baae0ea04557a87f358fa2131baf15d45cd3aba7a9ab42d14ec80df38\"\n }\n - \ ],\n \"firmwareanalysis\": [\n {\n \"downloadUrl\": - \"https://azcliprod.blob.core.windows.net/cli-extensions/firmwareanalysis-1.0.0-py3-none-any.whl\",\n + \"b83f723baae0ea04557a87f358fa2131baf15d45cd3aba7a9ab42d14ec80df38\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/express_route_cross_connection-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"express_route_cross_connection-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/express-route-cross-connection\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"express-route-cross-connection\",\n \"summary\": \"Microsoft + Azure Command-Line Tools ExpressRouteCrossConnection Extension.\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"c7599b77f636f01718a847fe4f5ad970e1d3f30aeaf559d69c27f0f6b06797cd\"\n + \ }\n ],\n \"firmwareanalysis\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/firmwareanalysis-1.0.0-py3-none-any.whl\",\n \ \"filename\": \"firmwareanalysis-1.0.0-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": \"2.55.0\",\n \"classifiers\": @@ -29188,10 +31762,114 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Fleet Extension\",\n \"version\": \"1.0.2\"\n },\n - \ \"sha256Digest\": \"ed2594f6deb93be770f9d0ae9379260795ae4e3da323d300ad88f1be0764f70b\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.0.3-py3-none-any.whl\",\n - \ \"filename\": \"fleet-1.0.3-py3-none-any.whl\",\n \"metadata\": + Tools Fleet Extension\",\n \"version\": \"1.0.2\"\n },\n + \ \"sha256Digest\": \"ed2594f6deb93be770f9d0ae9379260795ae4e3da323d300ad88f1be0764f70b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.0.3-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.0.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"1.0.3\"\n },\n + \ \"sha256Digest\": \"cd93b819d0a8c1ab50f4aec00b31623fd01040362c4cd633a89ba03fc894eb73\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.0.4-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.0.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"1.0.4\"\n },\n + \ \"sha256Digest\": \"2aac868e3dd298759f38bb941105b031fa6a5d6d9c2b72d0c1467045115e2c41\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.0.5-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.0.5-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"1.0.5\"\n },\n + \ \"sha256Digest\": \"dca1261a36ae06aa4d6a61b2c070f56c0a2bedff6023e2063bad8b678456cb26\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.48.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/fleet\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Fleet Extension\",\n \"version\": \"1.1.0\"\n },\n + \ \"sha256Digest\": \"aef2ad74e99cdd5c0adacffc2470b5807c2e8ffb6405709f41a07dc8ea53c850\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.1.1-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.1.1-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.48.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n @@ -29214,10 +31892,10 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Fleet Extension\",\n \"version\": \"1.0.3\"\n },\n - \ \"sha256Digest\": \"cd93b819d0a8c1ab50f4aec00b31623fd01040362c4cd633a89ba03fc894eb73\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.0.4-py3-none-any.whl\",\n - \ \"filename\": \"fleet-1.0.4-py3-none-any.whl\",\n \"metadata\": + Tools Fleet Extension\",\n \"version\": \"1.1.1\"\n },\n + \ \"sha256Digest\": \"36b85eba90e306593595955c8663426f0c9e377719d179b0a2118b97403c3651\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.1.2-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.1.2-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.48.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n @@ -29240,12 +31918,12 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Fleet Extension\",\n \"version\": \"1.0.4\"\n },\n - \ \"sha256Digest\": \"2aac868e3dd298759f38bb941105b031fa6a5d6d9c2b72d0c1467045115e2c41\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.0.5-py3-none-any.whl\",\n - \ \"filename\": \"fleet-1.0.5-py3-none-any.whl\",\n \"metadata\": + Tools Fleet Extension\",\n \"version\": \"1.1.2\"\n },\n + \ \"sha256Digest\": \"d0d2cf188da6a2f72ebc335d1ff82827c84a4965e23188e3408c85b90e2131dc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.2.0-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": - \"2.48.0\",\n \"classifiers\": [\n \"Development + \"2.61.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -29266,12 +31944,12 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Fleet Extension\",\n \"version\": \"1.0.5\"\n },\n - \ \"sha256Digest\": \"dca1261a36ae06aa4d6a61b2c070f56c0a2bedff6023e2063bad8b678456cb26\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.1.0-py3-none-any.whl\",\n - \ \"filename\": \"fleet-1.1.0-py3-none-any.whl\",\n \"metadata\": + Tools Fleet Extension\",\n \"version\": \"1.2.0\"\n },\n + \ \"sha256Digest\": \"6e9504f22893636a14990955bfb731e77a2f681b100f2cb20cc2455ce15a2b8b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.2.1-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.2.1-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": - \"2.48.0\",\n \"classifiers\": [\n \"Development + \"2.61.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -29292,12 +31970,12 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Fleet Extension\",\n \"version\": \"1.1.0\"\n },\n - \ \"sha256Digest\": \"aef2ad74e99cdd5c0adacffc2470b5807c2e8ffb6405709f41a07dc8ea53c850\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.1.1-py3-none-any.whl\",\n - \ \"filename\": \"fleet-1.1.1-py3-none-any.whl\",\n \"metadata\": + Tools Fleet Extension\",\n \"version\": \"1.2.1\"\n },\n + \ \"sha256Digest\": \"d7e3525249c0c4e5ae0988500e36847b4363d734f7b16e7a0f9a9e54623081ae\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.2.2-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.2.2-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": - \"2.48.0\",\n \"classifiers\": [\n \"Development + \"2.61.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -29318,12 +31996,12 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Fleet Extension\",\n \"version\": \"1.1.1\"\n },\n - \ \"sha256Digest\": \"36b85eba90e306593595955c8663426f0c9e377719d179b0a2118b97403c3651\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.1.2-py3-none-any.whl\",\n - \ \"filename\": \"fleet-1.1.2-py3-none-any.whl\",\n \"metadata\": + Tools Fleet Extension\",\n \"version\": \"1.2.2\"\n },\n + \ \"sha256Digest\": \"76bd826b8200e6fa955cc4db8ad66b64af156cb6cb1690e5f1af7dba1cbb3b58\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.3.0-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.3.0-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": - \"2.48.0\",\n \"classifiers\": [\n \"Development + \"2.61.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -29344,10 +32022,10 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Fleet Extension\",\n \"version\": \"1.1.2\"\n },\n - \ \"sha256Digest\": \"d0d2cf188da6a2f72ebc335d1ff82827c84a4965e23188e3408c85b90e2131dc\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.2.0-py3-none-any.whl\",\n - \ \"filename\": \"fleet-1.2.0-py3-none-any.whl\",\n \"metadata\": + Tools Fleet Extension\",\n \"version\": \"1.3.0\"\n },\n + \ \"sha256Digest\": \"411fbf4bef6f1495218f03907a2157e7d269bfa7da966c99b73627d1c96c95ff\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fleet-1.4.0-py3-none-any.whl\",\n + \ \"filename\": \"fleet-1.4.0-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n @@ -29370,8 +32048,8 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"fleet\",\n \"summary\": \"Microsoft Azure Command-Line - Tools Fleet Extension\",\n \"version\": \"1.2.0\"\n },\n - \ \"sha256Digest\": \"6e9504f22893636a14990955bfb731e77a2f681b100f2cb20cc2455ce15a2b8b\"\n + Tools Fleet Extension\",\n \"version\": \"1.4.0\"\n },\n + \ \"sha256Digest\": \"1d83a9000c879ff1a9a2bff2ea23183ab61e342713dfedb662345593b1658438\"\n \ }\n ],\n \"fluid-relay\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/fluid_relay-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"fluid_relay-0.1.0-py3-none-any.whl\",\n \"metadata\": @@ -30240,6 +32918,32 @@ interactions: \"hdinsightonaks\",\n \"summary\": \"Microsoft Azure Command-Line Tools Hdinsightonaks Extension.\",\n \"version\": \"1.0.0b2\"\n \ },\n \"sha256Digest\": \"c323291952f9ec6014af5f760b26860bd8029aa04cc226fd5996f20726641c59\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/hdinsightonaks-1.0.0b3-py3-none-any.whl\",\n + \ \"filename\": \"hdinsightonaks-1.0.0b3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/hdinsightonaks\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"hdinsightonaks\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Hdinsightonaks Extension.\",\n \"version\": \"1.0.0b3\"\n + \ },\n \"sha256Digest\": \"f549b85107b7b83ff64fcfa5c90a5d7e900a5ea2efe76eec9b1f81689e58c365\"\n \ }\n ],\n \"healthbot\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/healthbot-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"healthbot-0.1.0-py3-none-any.whl\",\n \"metadata\": @@ -31220,6 +33924,32 @@ interactions: \"import-export\",\n \"summary\": \"Microsoft Azure Command-Line Tools StorageImportExport Extension\",\n \"version\": \"0.1.1\"\n \ },\n \"sha256Digest\": \"0680948362e12138c9582e68e471533482749bd660bfe3c8c2a4d856e90927b0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/import_export-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"import_export-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/import-export\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"import-export\",\n \"summary\": \"Microsoft Azure Command-Line + Tools StorageImportExport Extension\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"c4e36f1003031a67615a45cd12592bf5c11c54b7bd957f6c2af90efcb5c517b2\"\n \ }\n ],\n \"informatica\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/informatica-1.0.0b1-py3-none-any.whl\",\n \ \"filename\": \"informatica-1.0.0b1-py3-none-any.whl\",\n @@ -31528,6 +34258,37 @@ interactions: \ }\n ],\n \"summary\": \"Microsoft Azure Command-Line Interactive Shell\",\n \"version\": \"0.5.3\"\n },\n \"sha256Digest\": \"95f056f9a459fb83e36cc332eb00ba3d4ac07386b3f813f620dc530ceeeb32cf\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/interactive-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"interactive-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.62\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/interactive\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"interactive\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"prompt-toolkit (~=1.0.15)\",\n \"prompt_toolkit~=1.0.15\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Interactive + Shell\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"08ebc70e1bec8a010431894c43684714ace35fb5b0764c1f4fd89deb3f928fbc\"\n \ }\n ],\n \"internet-analyzer\": [\n {\n \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/internet_analyzer-0.1.0rc5-py2.py3-none-any.whl\",\n \ \"filename\": \"internet_analyzer-0.1.0rc5-py2.py3-none-any.whl\",\n @@ -31575,6 +34336,34 @@ interactions: \"internet-analyzer\",\n \"summary\": \"Microsoft Azure Command-Line Tools Internet Analyzer Extension\",\n \"version\": \"0.1.0rc6\"\n },\n \"sha256Digest\": \"0708d9f598d1618d138eebcf18354d97c7b3a2c90570959df077e04d419d32c3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/internet_analyzer-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"internet_analyzer-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/internet-analyzer\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"internet-analyzer\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Internet Analyzer Extension\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"4564881a7c90bacfd881c629a4182398007c886d099ea88db97e1ff10053a5c4\"\n \ }\n ],\n \"ip-group\": [\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/ip_group-0.1.1-py2.py3-none-any.whl\",\n \ \"filename\": \"ip_group-0.1.1-py2.py3-none-any.whl\",\n \"metadata\": @@ -31975,6 +34764,37 @@ interactions: \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-configuration Extension\",\n \"version\": \"2.0.0\"\n },\n \ \"sha256Digest\": \"1abb112abe603757a324c6eb0aaa602692aca07bb7470d6237111eaea4a0faec\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-2.1.0-py3-none-any.whl\",\n + \ \"filename\": \"k8s_configuration-2.1.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-configuration\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"k8s-configuration\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"pycryptodome (~=3.21.0)\",\n \"pycryptodome~=3.21.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools K8s-configuration + Extension\",\n \"version\": \"2.1.0\"\n },\n + \ \"sha256Digest\": \"1bca1108a53b1b097ba2caab0abd5d40edfd6913e6034be77b6afc2968954bda\"\n \ }\n ],\n \"k8s-extension\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-0.2.0-py3-none-any.whl\",\n \ \"filename\": \"k8s_extension-0.2.0-py3-none-any.whl\",\n @@ -33201,6 +36021,32 @@ interactions: \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line Tools K8s-extension Extension\",\n \"version\": \"1.6.1\"\n \ },\n \"sha256Digest\": \"41861d65b9d86e0b622986a4984ce7a611f87b92da578db8c0527ec74334f32c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_extension-1.6.2-py3-none-any.whl\",\n + \ \"filename\": \"k8s_extension-1.6.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.51.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-extension\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-extension\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8s-extension Extension\",\n \"version\": \"1.6.2\"\n + \ },\n \"sha256Digest\": \"852da7bac7cb55017cc843e05f5a70ea3b92e95dde2592cfe892fed51e350a8f\"\n \ }\n ],\n \"k8s-runtime\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_runtime-1.0.0b1-py3-none-any.whl\",\n \ \"filename\": \"k8s_runtime-1.0.0b1-py3-none-any.whl\",\n @@ -33362,6 +36208,58 @@ interactions: \ }\n ],\n \"summary\": \"Microsoft Azure Command-Line Tools K8sRuntime Extension.\",\n \"version\": \"1.0.2\"\n },\n \"sha256Digest\": \"7b3987f2fae83099f32f123f1e712fea7824f2041b5743db7e2dd62927de5629\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_runtime-1.0.3-py3-none-any.whl\",\n + \ \"filename\": \"k8s_runtime-1.0.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-runtime\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-runtime\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8sRuntime Extension.\",\n \"version\": \"1.0.3\"\n + \ },\n \"sha256Digest\": \"133dd153979c74d37aa25956ed8a9aa741c334929848cd67c26f268332759d40\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/k8s_runtime-1.0.4-py3-none-any.whl\",\n + \ \"filename\": \"k8s_runtime-1.0.4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/k8s-runtime\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"k8s-runtime\",\n \"summary\": \"Microsoft Azure Command-Line + Tools K8sRuntime Extension.\",\n \"version\": \"1.0.4\"\n + \ },\n \"sha256Digest\": \"aee2d3008d818d78342149e6f1d2c7922abbbe43f323d51e6cd58c73b1c67b3a\"\n \ }\n ],\n \"k8sconfiguration\": [\n {\n \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/k8sconfiguration-0.1.7-py2.py3-none-any.whl\",\n \ \"filename\": \"k8sconfiguration-0.1.7-py2.py3-none-any.whl\",\n @@ -33790,10 +36688,39 @@ interactions: \ \"azure-core\",\n \"pyyaml\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Load - Extension.\",\n \"version\": \"0.3.0\"\n },\n - \ \"sha256Digest\": \"cb64e149679d6c537a29bfb07ef5785c622cf18c12099ee49b0afa36cbec3f82\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-0.3.1-py3-none-any.whl\",\n - \ \"filename\": \"load-0.3.1-py3-none-any.whl\",\n \"metadata\": + Extension.\",\n \"version\": \"0.3.0\"\n },\n + \ \"sha256Digest\": \"cb64e149679d6c537a29bfb07ef5785c622cf18c12099ee49b0afa36cbec3f82\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-0.3.1-py3-none-any.whl\",\n + \ \"filename\": \"load-0.3.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/load\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"load\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\",\n \"pyyaml\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Load + Testing Extension.\",\n \"version\": \"0.3.1\"\n },\n + \ \"sha256Digest\": \"f8d518332a80b94cdf7b07fa03cf65881760b077e0c36ec7d06f9df6749e2238\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-0.3.2-py3-none-any.whl\",\n + \ \"filename\": \"load-0.3.2-py3-none-any.whl\",\n \"metadata\": {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: @@ -33816,13 +36743,14 @@ interactions: (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"load\",\n \"run_requires\": [\n {\n \"requires\": [\n - \ \"azure-core\",\n \"pyyaml\"\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"pyyaml\",\n \"pyyaml\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Load - Testing Extension.\",\n \"version\": \"0.3.1\"\n },\n - \ \"sha256Digest\": \"f8d518332a80b94cdf7b07fa03cf65881760b077e0c36ec7d06f9df6749e2238\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-0.3.2-py3-none-any.whl\",\n - \ \"filename\": \"load-0.3.2-py3-none-any.whl\",\n \"metadata\": + Testing Extension.\",\n \"version\": \"0.3.2\"\n },\n + \ \"sha256Digest\": \"1aaef361b473946e4a5fda5d7fe961078b09ae17ee535c971a48423bb4080977\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-0.3.3-py3-none-any.whl\",\n + \ \"filename\": \"load-0.3.3-py3-none-any.whl\",\n \"metadata\": {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: @@ -33849,10 +36777,10 @@ interactions: \ \"pyyaml\",\n \"pyyaml\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Load - Testing Extension.\",\n \"version\": \"0.3.2\"\n },\n - \ \"sha256Digest\": \"1aaef361b473946e4a5fda5d7fe961078b09ae17ee535c971a48423bb4080977\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-0.3.3-py3-none-any.whl\",\n - \ \"filename\": \"load-0.3.3-py3-none-any.whl\",\n \"metadata\": + Testing Extension.\",\n \"version\": \"0.3.3\"\n },\n + \ \"sha256Digest\": \"7b533580b6a2906a0e405a277e2a392f4367b3118ce4dd7dc80ea0609c6017ae\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-0.3.4-py3-none-any.whl\",\n + \ \"filename\": \"load-0.3.4-py3-none-any.whl\",\n \"metadata\": {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: @@ -33879,10 +36807,10 @@ interactions: \ \"pyyaml\",\n \"pyyaml\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Load - Testing Extension.\",\n \"version\": \"0.3.3\"\n },\n - \ \"sha256Digest\": \"7b533580b6a2906a0e405a277e2a392f4367b3118ce4dd7dc80ea0609c6017ae\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-0.3.4-py3-none-any.whl\",\n - \ \"filename\": \"load-0.3.4-py3-none-any.whl\",\n \"metadata\": + Testing Extension.\",\n \"version\": \"0.3.4\"\n },\n + \ \"sha256Digest\": \"0763cfd4f7b3022e1f4540f1b15c970c0d678028753e35b3367fa8d5deac0831\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"load-1.0.0-py3-none-any.whl\",\n \"metadata\": {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: @@ -33909,10 +36837,10 @@ interactions: \ \"pyyaml\",\n \"pyyaml\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Load - Testing Extension.\",\n \"version\": \"0.3.4\"\n },\n - \ \"sha256Digest\": \"0763cfd4f7b3022e1f4540f1b15c970c0d678028753e35b3367fa8d5deac0831\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-1.0.0-py3-none-any.whl\",\n - \ \"filename\": \"load-1.0.0-py3-none-any.whl\",\n \"metadata\": + Testing Extension.\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"3c967ddc01b613358dd6fc86c33fa96614ffe835fb4bc348c32f5a831353c040\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"load-1.0.1-py3-none-any.whl\",\n \"metadata\": {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: @@ -33939,10 +36867,10 @@ interactions: \ \"pyyaml\",\n \"pyyaml\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Load - Testing Extension.\",\n \"version\": \"1.0.0\"\n },\n - \ \"sha256Digest\": \"3c967ddc01b613358dd6fc86c33fa96614ffe835fb4bc348c32f5a831353c040\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-1.0.1-py3-none-any.whl\",\n - \ \"filename\": \"load-1.0.1-py3-none-any.whl\",\n \"metadata\": + Testing Extension.\",\n \"version\": \"1.0.1\"\n },\n + \ \"sha256Digest\": \"9ad6242dbd681e9db5e2f145a4422af764361e22b4c041cef68ccd19f844f4b6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-1.0.2-py3-none-any.whl\",\n + \ \"filename\": \"load-1.0.2-py3-none-any.whl\",\n \"metadata\": {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: @@ -33969,8 +36897,68 @@ interactions: \ \"pyyaml\",\n \"pyyaml\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Load - Testing Extension.\",\n \"version\": \"1.0.1\"\n },\n - \ \"sha256Digest\": \"9ad6242dbd681e9db5e2f145a4422af764361e22b4c041cef68ccd19f844f4b6\"\n + Testing Extension.\",\n \"version\": \"1.0.2\"\n },\n + \ \"sha256Digest\": \"d34f7c3e72bcdcb199631e3eca8937db198e8efe6fec93f6291b1a6a1d99f019\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"load-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/load\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"load\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"pyyaml\",\n \"pyyaml\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Load + Testing Extension.\",\n \"version\": \"1.1.0\"\n },\n + \ \"sha256Digest\": \"db587f0b2c06a75309cc3c15ab3fca8c647ea16a2357f0d2d4504a974e36007f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/load-1.1.1-py3-none-any.whl\",\n + \ \"filename\": \"load-1.1.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.41.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/load\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"load\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"pyyaml\",\n \"pyyaml\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Load + Testing Extension.\",\n \"version\": \"1.1.1\"\n },\n + \ \"sha256Digest\": \"0b41277c663a5f8e3710bf71d275d3043ab5f37c6ceda3a8cf0afaf32180f8bb\"\n \ }\n ],\n \"log-analytics\": [\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics-0.1.4-py2.py3-none-any.whl\",\n \ \"filename\": \"log_analytics-0.1.4-py2.py3-none-any.whl\",\n @@ -34070,6 +37058,33 @@ interactions: \"log-analytics\",\n \"summary\": \"Support for Azure Log Analytics query capabilities.\",\n \"version\": \"0.2.2\"\n \ },\n \"sha256Digest\": \"c04c42a26d50db82d14f76e209184b18d4cce17b458817ac607e3ff975641eb2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/log_analytics-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"log_analytics-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"aleldeib@microsoft.com\",\n + \ \"name\": \"Ace Eldeib\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/log-analytics\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"log-analytics\",\n \"summary\": \"Support for Azure Log + Analytics query capabilities.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"ccd36a8ca6979c549db7d7fd78009907e9e7bc2b09437885dbdd8b107cb15b66\"\n \ }\n ],\n \"log-analytics-solution\": [\n {\n \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/log_analytics_solution-0.1.0-py2.py3-none-any.whl\",\n \ \"filename\": \"log_analytics_solution-0.1.0-py2.py3-none-any.whl\",\n @@ -34149,6 +37164,32 @@ interactions: \"log-analytics-solution\",\n \"summary\": \"Support for Azure Log Analytics Solution\",\n \"version\": \"1.0.0\"\n \ },\n \"sha256Digest\": \"c0a4252da4c29032c4e956b768860529509e88a1ecef7f3a3189cb701a305c6b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/log_analytics_solution-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"log_analytics_solution-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.50.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/log-analytics-solution\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"log-analytics-solution\",\n \"summary\": \"Support for + Azure Log Analytics Solution\",\n \"version\": \"1.0.1\"\n + \ },\n \"sha256Digest\": \"7e10443de862cd0c19090b0a0dae5e9942e8b48c20e3a9c3305778daa756ea96\"\n \ }\n ],\n \"logic\": [\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/logic-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"logic-0.1.0-py3-none-any.whl\",\n \"metadata\": @@ -34668,6 +37709,32 @@ interactions: \"maintenance\",\n \"summary\": \"Microsoft Azure Command-Line Tools MaintenanceManagementClient Extension\",\n \"version\": \"1.6.0\"\n },\n \"sha256Digest\": \"3ab6a2dac48ba71b28bc8ee05d254daa72b62f84dda953749fa621a80ca39ae5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/maintenance-1.7.0b1-py3-none-any.whl\",\n + \ \"filename\": \"maintenance-1.7.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/maintenance\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"maintenance\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MaintenanceManagementClient Extension\",\n \"version\": + \"1.7.0b1\"\n },\n \"sha256Digest\": \"71998b7d5de7223c5e2ae7a1c00445b411d139a023876f84788f51f1f510b2db\"\n \ }\n ],\n \"managedccfs\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managedccfs-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"managedccfs-0.1.0-py3-none-any.whl\",\n \"metadata\": @@ -35088,6 +38155,32 @@ interactions: \"managednetworkfabric\",\n \"summary\": \"Support for managednetworkfabric commands based on 2023-06-15 API version.\",\n \"version\": \"6.2.0\"\n },\n \"sha256Digest\": \"3761e2319e0a6bccde79d59e2ab2d508f00e601562c0b7e4bf290ff9d9b14479\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-6.4.0-py3-none-any.whl\",\n + \ \"filename\": \"managednetworkfabric-6.4.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.49.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managednetworkfabric\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managednetworkfabric\",\n \"summary\": \"Support for + managednetworkfabric commands based on 2023-06-15 API version.\",\n \"version\": + \"6.4.0\"\n },\n \"sha256Digest\": \"9d41078e0654aaae36a5f0f283f51de98cc4360582920536542546ed34ca0bc4\"\n \ }\n ],\n \"managementpartner\": [\n {\n \ \"downloadUrl\": \"https://files.pythonhosted.org/packages/28/08/0fde582cf50eaf1ef304b35674b9b22f6731d95b2e41339eba4d35583b18/managementpartner-0.1.2-py2.py3-none-any.whl\",\n \ \"filename\": \"managementpartner-0.1.2-py2.py3-none-any.whl\",\n @@ -35142,6 +38235,60 @@ interactions: \"managementpartner\",\n \"summary\": \"Support for Management Partner preview\",\n \"version\": \"0.1.3\"\n },\n \ \"sha256Digest\": \"22ddf4b1cdc77e99262cb6089c4d96040065828a1d38a2709fdb945d3c851839\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/managementpartner-1.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"managementpartner-1.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"jefl@microsoft.com\",\n \"name\": + \"Jeffrey Li\",\n \"role\": \"author\"\n + \ }\n ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/managementpartner\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"managementpartner\",\n \"summary\": \"Support for Management + Partner preview\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"a5d4a264647818b4a19cdc356ab5e6f8dd1b08fa6713c00a15297d2c5a059494\"\n + \ }\n ],\n \"mcc\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/mcc-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"mcc-1.0.0b1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/mcc\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mcc\",\n \"summary\": \"Microsoft Connected Cache CLI + Commands.\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"6a734c7fb19d71ad5d2101464b247c7bffdda1e59c2651e98547ff79eb19ed4d\"\n \ }\n ],\n \"mdp\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mdp-1.0.0b1-py3-none-any.whl\",\n \ \"filename\": \"mdp-1.0.0b1-py3-none-any.whl\",\n \"metadata\": @@ -35195,6 +38342,31 @@ interactions: \"mdp\",\n \"summary\": \"Microsoft Azure Command-Line Tools Mdp Extension.\",\n \"version\": \"1.0.0b2\"\n },\n \ \"sha256Digest\": \"062ad026d9eaf791b5928c4fb793148d40c6c297cee32f175cd3a155eb24d93f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mdp-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"mdp-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/mdp\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"mdp\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Mdp Extension.\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"c0a4ae1817103b548f1d91d7e1c85528415da016a83d483154859723bfb78d81\"\n \ }\n ],\n \"mesh\": [\n {\n \"downloadUrl\": \"https://meshcli.blob.core.windows.net/cli/mesh-0.10.6-py2.py3-none-any.whl\",\n \ \"filename\": \"mesh-0.10.6-py2.py3-none-any.whl\",\n \"metadata\": @@ -35277,6 +38449,33 @@ interactions: \ }\n ],\n \"summary\": \"Support for Microsoft Azure Service Fabric Mesh - Public Preview\",\n \"version\": \"1.0.0a1\"\n },\n \"sha256Digest\": \"fe52e3ed5bd7252a120bbebc0a578b0138a257a22dd264adeed97862ede07a35\"\n + \ }\n ],\n \"microsoft-fabric\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/microsoft_fabric-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"microsoft_fabric-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/microsoft-fabric\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"microsoft-fabric\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Microsoft Fabric Extension.\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"8ba450a5a3daafa8b9b6b6e9ee8224f468fd972332e905000f2acc7ff00cd9bb\"\n \ }\n ],\n \"mixed-reality\": [\n {\n \"downloadUrl\": \"https://test-files.pythonhosted.org/packages/e4/fa/14628eb512ef4f0c38e4e6c8ee2d0624e03d352ca0ec1b1167a32f9de9a3/mixed_reality-0.0.1-py2.py3-none-any.whl\",\n \ \"filename\": \"mixed_reality-0.0.1-py2.py3-none-any.whl\",\n @@ -37253,91 +40452,351 @@ interactions: (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": [\n {\n \"requires\": [\n - \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-common<2.0.0,>=1.1\",\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-common<2.0.0,>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (<13.0.0,>=12.10.0)\",\n + \ \"azure-storage-blob<13.0.0,>=12.10.0\",\n + \ \"azure-storage-file-datalake (<13.0.0)\",\n + \ \"azure-storage-file-datalake<13.0.0\",\n + \ \"azure-storage-file-share (<13.0.0)\",\n + \ \"azure-storage-file-share<13.0.0\",\n \"azureml-dataprep-rslex + (>=2.22.0)\",\n \"azureml-dataprep-rslex>=2.22.0\",\n + \ \"colorama (<0.5.0)\",\n \"colorama<0.5.0\",\n + \ \"cryptography\",\n \"cryptography\",\n + \ \"docker\",\n \"docker\",\n + \ \"isodate\",\n \"isodate\",\n + \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"jsonschema<5.0.0,>=4.0.0\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"marshmallow<4.0.0,>=3.5\",\n + \ \"opencensus-ext-azure (<2.0.0)\",\n \"opencensus-ext-azure<2.0.0\",\n + \ \"opencensus-ext-logging (<=0.1.1)\",\n \"opencensus-ext-logging<=0.1.1\",\n + \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n + \ \"pyjwt (<3.0.0)\",\n \"pyjwt<3.0.0\",\n + \ \"strictyaml (<2.0.0)\",\n \"strictyaml<2.0.0\",\n + \ \"tqdm (<5.0.0)\",\n \"tqdm<5.0.0\",\n + \ \"typing-extensions (<5.0.0)\",\n \"typing-extensions<5.0.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.25.0\"\n },\n + \ \"sha256Digest\": \"6df57410a255c610627192c3527ac2b15f492409800070623cd1ecb433fb750d\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.25.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.25.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-common<2.0.0,>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (<13.0.0,>=12.10.0)\",\n + \ \"azure-storage-blob<13.0.0,>=12.10.0\",\n + \ \"azure-storage-file-datalake (<13.0.0)\",\n + \ \"azure-storage-file-datalake<13.0.0\",\n + \ \"azure-storage-file-share (<13.0.0)\",\n + \ \"azure-storage-file-share<13.0.0\",\n \"colorama + (<0.5.0)\",\n \"colorama<0.5.0\",\n \"cryptography\",\n + \ \"cryptography\",\n \"docker\",\n + \ \"docker\",\n \"isodate\",\n + \ \"isodate\",\n \"jsonschema + (<5.0.0,>=4.0.0)\",\n \"jsonschema<5.0.0,>=4.0.0\",\n + \ \"marshmallow (<4.0.0,>=3.5)\",\n \"marshmallow<4.0.0,>=3.5\",\n + \ \"opencensus-ext-azure (<2.0.0)\",\n \"opencensus-ext-azure<2.0.0\",\n + \ \"opencensus-ext-logging (<=0.1.1)\",\n \"opencensus-ext-logging<=0.1.1\",\n + \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n + \ \"pyjwt (<3.0.0)\",\n \"pyjwt<3.0.0\",\n + \ \"strictyaml (<2.0.0)\",\n \"strictyaml<2.0.0\",\n + \ \"tqdm (<5.0.0)\",\n \"tqdm<5.0.0\",\n + \ \"typing-extensions (<5.0.0)\",\n \"typing-extensions<5.0.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.25.1\"\n },\n + \ \"sha256Digest\": \"cf20d42f40871ccff101adc9da22ea1f3f61e2f941c777a7f21976e041a7daef\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.26.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.26.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (>=1.1)\",\n \"azure-common>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (>=12.10.0)\",\n \"azure-storage-blob>=12.10.0\",\n + \ \"azure-storage-file-datalake (>=12.2.0)\",\n + \ \"azure-storage-file-datalake>=12.2.0\",\n + \ \"azure-storage-file-share\",\n \"azure-storage-file-share\",\n + \ \"colorama\",\n \"colorama\",\n + \ \"cryptography\",\n \"cryptography\",\n + \ \"docker\",\n \"docker\",\n + \ \"isodate\",\n \"isodate\",\n + \ \"jsonschema (>=4.0.0)\",\n \"jsonschema>=4.0.0\",\n + \ \"marshmallow (>=3.5)\",\n \"marshmallow>=3.5\",\n + \ \"opencensus-ext-azure\",\n \"opencensus-ext-azure\",\n + \ \"opencensus-ext-logging\",\n \"opencensus-ext-logging\",\n + \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n + \ \"pyjwt\",\n \"pyjwt\",\n + \ \"strictyaml\",\n \"strictyaml\",\n + \ \"tqdm\",\n \"tqdm\",\n + \ \"typing-extensions\",\n \"typing-extensions\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.26.0\"\n },\n + \ \"sha256Digest\": \"63762ebec712d9d9aefdb95dd22f0720ca31c34b4ded0e16b701987e33fce506\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.26.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.26.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (>=1.1)\",\n \"azure-common>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (>=12.10.0)\",\n \"azure-storage-blob>=12.10.0\",\n + \ \"azure-storage-file-datalake (>=12.2.0)\",\n + \ \"azure-storage-file-datalake>=12.2.0\",\n + \ \"azure-storage-file-share\",\n \"azure-storage-file-share\",\n + \ \"colorama\",\n \"colorama\",\n + \ \"cryptography\",\n \"cryptography\",\n + \ \"docker\",\n \"docker\",\n + \ \"isodate\",\n \"isodate\",\n + \ \"jsonschema (>=4.0.0)\",\n \"jsonschema>=4.0.0\",\n + \ \"marshmallow (>=3.5)\",\n \"marshmallow>=3.5\",\n + \ \"opencensus-ext-azure\",\n \"opencensus-ext-azure\",\n + \ \"opencensus-ext-logging\",\n \"opencensus-ext-logging\",\n + \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n + \ \"pyjwt\",\n \"pyjwt\",\n + \ \"strictyaml\",\n \"strictyaml\",\n + \ \"tqdm\",\n \"tqdm\",\n + \ \"typing-extensions\",\n \"typing-extensions\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.26.1\"\n },\n + \ \"sha256Digest\": \"caac6f58f9f181cb94e4673f0e0affa10d8986ac84b30b6aa547a2d28901090e\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.27.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.27.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (>=1.1)\",\n \"azure-common>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (>=12.10.0)\",\n \"azure-storage-blob>=12.10.0\",\n + \ \"azure-storage-file-datalake (>=12.2.0)\",\n + \ \"azure-storage-file-datalake>=12.2.0\",\n + \ \"azure-storage-file-share\",\n \"azure-storage-file-share\",\n + \ \"colorama\",\n \"colorama\",\n + \ \"cryptography\",\n \"cryptography\",\n + \ \"docker\",\n \"docker\",\n + \ \"isodate\",\n \"isodate\",\n + \ \"jsonschema (>=4.0.0)\",\n \"jsonschema>=4.0.0\",\n + \ \"marshmallow (>=3.5)\",\n \"marshmallow>=3.5\",\n + \ \"opencensus-ext-azure\",\n \"opencensus-ext-azure\",\n + \ \"opencensus-ext-logging\",\n \"opencensus-ext-logging\",\n + \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n + \ \"pyjwt\",\n \"pyjwt\",\n + \ \"strictyaml\",\n \"strictyaml\",\n + \ \"tqdm\",\n \"tqdm\",\n + \ \"typing-extensions\",\n \"typing-extensions\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.27.0\"\n },\n + \ \"sha256Digest\": \"21d076e34544770fcdc9a7c0eec0de45087b5d47b2756029fecf66e18877fba1\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.27.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.27.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (>=1.1)\",\n \"azure-common>=1.1\",\n + \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n + \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n + \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n + \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n + \ \"azure-storage-blob (>=12.10.0)\",\n \"azure-storage-blob>=12.10.0\",\n + \ \"azure-storage-file-datalake (>=12.2.0)\",\n + \ \"azure-storage-file-datalake>=12.2.0\",\n + \ \"azure-storage-file-share\",\n \"azure-storage-file-share\",\n + \ \"colorama\",\n \"colorama\",\n + \ \"cryptography\",\n \"cryptography\",\n + \ \"docker\",\n \"docker\",\n + \ \"isodate\",\n \"isodate\",\n + \ \"jsonschema (>=4.0.0)\",\n \"jsonschema>=4.0.0\",\n + \ \"marshmallow (>=3.5)\",\n \"marshmallow>=3.5\",\n + \ \"opencensus-ext-azure\",\n \"opencensus-ext-azure\",\n + \ \"opencensus-ext-logging\",\n \"opencensus-ext-logging\",\n + \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n + \ \"pyjwt\",\n \"pyjwt\",\n + \ \"strictyaml\",\n \"strictyaml\",\n + \ \"tqdm\",\n \"tqdm\",\n + \ \"typing-extensions\",\n \"typing-extensions\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces + Extension\",\n \"version\": \"2.27.1\"\n },\n + \ \"sha256Digest\": \"b53a8945ea6f26d2c1deb3e4b30a0b9ae09bf6e033662e71c40b700ac543c5d1\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.28.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.28.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 5 - Production/Stable\",\n + \ \"Intended Audience :: Developers\",\n \"Intended + Audience :: System Administrators\",\n \"Environment + :: Console\",\n \"Programming Language :: Python\",\n + \ \"Programming Language :: Python :: 3\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"Programming Language :: Python + :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azuremlsdk@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-common (>=1.1)\",\n \"azure-common>=1.1\",\n \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n - \ \"azure-storage-blob (<13.0.0,>=12.10.0)\",\n - \ \"azure-storage-blob<13.0.0,>=12.10.0\",\n - \ \"azure-storage-file-datalake (<13.0.0)\",\n - \ \"azure-storage-file-datalake<13.0.0\",\n - \ \"azure-storage-file-share (<13.0.0)\",\n - \ \"azure-storage-file-share<13.0.0\",\n \"azureml-dataprep-rslex - (>=2.22.0)\",\n \"azureml-dataprep-rslex>=2.22.0\",\n - \ \"colorama (<0.5.0)\",\n \"colorama<0.5.0\",\n + \ \"azure-storage-blob (>=12.10.0)\",\n \"azure-storage-blob>=12.10.0\",\n + \ \"azure-storage-file-datalake (>=12.2.0)\",\n + \ \"azure-storage-file-datalake>=12.2.0\",\n + \ \"azure-storage-file-share\",\n \"azure-storage-file-share\",\n + \ \"colorama\",\n \"colorama\",\n \ \"cryptography\",\n \"cryptography\",\n \ \"docker\",\n \"docker\",\n \ \"isodate\",\n \"isodate\",\n - \ \"jsonschema (<5.0.0,>=4.0.0)\",\n \"jsonschema<5.0.0,>=4.0.0\",\n - \ \"marshmallow (<4.0.0,>=3.5)\",\n \"marshmallow<4.0.0,>=3.5\",\n - \ \"opencensus-ext-azure (<2.0.0)\",\n \"opencensus-ext-azure<2.0.0\",\n - \ \"opencensus-ext-logging (<=0.1.1)\",\n \"opencensus-ext-logging<=0.1.1\",\n - \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n - \ \"pyjwt (<3.0.0)\",\n \"pyjwt<3.0.0\",\n - \ \"strictyaml (<2.0.0)\",\n \"strictyaml<2.0.0\",\n - \ \"tqdm (<5.0.0)\",\n \"tqdm<5.0.0\",\n - \ \"typing-extensions (<5.0.0)\",\n \"typing-extensions<5.0.0\"\n - \ ]\n }\n ],\n - \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces - Extension\",\n \"version\": \"2.25.0\"\n },\n - \ \"sha256Digest\": \"6df57410a255c610627192c3527ac2b15f492409800070623cd1ecb433fb750d\"\n - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.25.1-py3-none-any.whl\",\n - \ \"filename\": \"ml-2.25.1-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": - [\n \"Development Status :: 5 - Production/Stable\",\n - \ \"Intended Audience :: Developers\",\n \"Intended - Audience :: System Administrators\",\n \"Environment - :: Console\",\n \"Programming Language :: Python\",\n - \ \"Programming Language :: Python :: 3\",\n \"Programming - Language :: Python :: 3.7\",\n \"Programming Language - :: Python :: 3.8\",\n \"Programming Language :: Python - :: 3.9\",\n \"Programming Language :: Python :: 3.10\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"description_content_type\": \"text/x-rst\",\n \"extensions\": - {\n \"python.details\": {\n \"contacts\": - [\n {\n \"email\": - \"azuremlsdk@microsoft.com\",\n \"name\": - \"Microsoft Corporation\",\n \"role\": - \"author\"\n }\n ],\n - \ \"document_names\": {\n \"description\": - \"DESCRIPTION.rst\"\n },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azureml-examples\"\n - \ }\n }\n },\n - \ \"extras\": [],\n \"generator\": \"bdist_wheel - (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": - \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": - [\n {\n \"requires\": [\n - \ \"azure-common (<2.0.0,>=1.1)\",\n \"azure-common<2.0.0,>=1.1\",\n - \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n - \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n - \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n - \ \"azure-mgmt-resourcegraph<9.0.0,>=2.0.0\",\n - \ \"azure-storage-blob (<13.0.0,>=12.10.0)\",\n - \ \"azure-storage-blob<13.0.0,>=12.10.0\",\n - \ \"azure-storage-file-datalake (<13.0.0)\",\n - \ \"azure-storage-file-datalake<13.0.0\",\n - \ \"azure-storage-file-share (<13.0.0)\",\n - \ \"azure-storage-file-share<13.0.0\",\n \"colorama - (<0.5.0)\",\n \"colorama<0.5.0\",\n \"cryptography\",\n - \ \"cryptography\",\n \"docker\",\n - \ \"docker\",\n \"isodate\",\n - \ \"isodate\",\n \"jsonschema - (<5.0.0,>=4.0.0)\",\n \"jsonschema<5.0.0,>=4.0.0\",\n - \ \"marshmallow (<4.0.0,>=3.5)\",\n \"marshmallow<4.0.0,>=3.5\",\n - \ \"opencensus-ext-azure (<2.0.0)\",\n \"opencensus-ext-azure<2.0.0\",\n - \ \"opencensus-ext-logging (<=0.1.1)\",\n \"opencensus-ext-logging<=0.1.1\",\n + \ \"jsonschema (>=4.0.0)\",\n \"jsonschema>=4.0.0\",\n + \ \"marshmallow (>=3.5)\",\n \"marshmallow>=3.5\",\n + \ \"opencensus-ext-azure\",\n \"opencensus-ext-azure\",\n + \ \"opencensus-ext-logging\",\n \"opencensus-ext-logging\",\n \ \"pydash (>=6.0.0)\",\n \"pydash>=6.0.0\",\n - \ \"pyjwt (<3.0.0)\",\n \"pyjwt<3.0.0\",\n - \ \"strictyaml (<2.0.0)\",\n \"strictyaml<2.0.0\",\n - \ \"tqdm (<5.0.0)\",\n \"tqdm<5.0.0\",\n - \ \"typing-extensions (<5.0.0)\",\n \"typing-extensions<5.0.0\"\n + \ \"pyjwt\",\n \"pyjwt\",\n + \ \"strictyaml\",\n \"strictyaml\",\n + \ \"tqdm\",\n \"tqdm\",\n + \ \"typing-extensions\",\n \"typing-extensions\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces - Extension\",\n \"version\": \"2.25.1\"\n },\n - \ \"sha256Digest\": \"cf20d42f40871ccff101adc9da22ea1f3f61e2f941c777a7f21976e041a7daef\"\n - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.26.0-py3-none-any.whl\",\n - \ \"filename\": \"ml-2.26.0-py3-none-any.whl\",\n \"metadata\": + Extension\",\n \"version\": \"2.28.0\"\n },\n + \ \"sha256Digest\": \"177c08432719db3d50b2e17ee47fc6aa5eb8e2400c7eda1d9d9d123a7ecc3838\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.29.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.29.0-py3-none-any.whl\",\n \"metadata\": {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": [\n \"Development Status :: 5 - Production/Stable\",\n \ \"Intended Audience :: Developers\",\n \"Intended @@ -37386,10 +40845,10 @@ interactions: \ \"typing-extensions\",\n \"typing-extensions\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces - Extension\",\n \"version\": \"2.26.0\"\n },\n - \ \"sha256Digest\": \"63762ebec712d9d9aefdb95dd22f0720ca31c34b4ded0e16b701987e33fce506\"\n - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.26.1-py3-none-any.whl\",\n - \ \"filename\": \"ml-2.26.1-py3-none-any.whl\",\n \"metadata\": + Extension\",\n \"version\": \"2.29.0\"\n },\n + \ \"sha256Digest\": \"b414015d511c63ab80067ac7c0f0b6760de17bc8174d9bc25ebb9a392cccdffc\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.30.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.30.0-py3-none-any.whl\",\n \"metadata\": {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": [\n \"Development Status :: 5 - Production/Stable\",\n \ \"Intended Audience :: Developers\",\n \"Intended @@ -37415,6 +40874,7 @@ interactions: \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": [\n {\n \"requires\": [\n \ \"azure-common (>=1.1)\",\n \"azure-common>=1.1\",\n + \ \"azure-identity (==1.17.1)\",\n \"azure-identity==1.17.1\",\n \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n @@ -37438,10 +40898,10 @@ interactions: \ \"typing-extensions\",\n \"typing-extensions\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces - Extension\",\n \"version\": \"2.26.1\"\n },\n - \ \"sha256Digest\": \"caac6f58f9f181cb94e4673f0e0affa10d8986ac84b30b6aa547a2d28901090e\"\n - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.27.0-py3-none-any.whl\",\n - \ \"filename\": \"ml-2.27.0-py3-none-any.whl\",\n \"metadata\": + Extension\",\n \"version\": \"2.30.0\"\n },\n + \ \"sha256Digest\": \"c0d685063ff76a850b21c6cd632f5a6ea216cf3fb718a663f11a83c0fd66699b\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.30.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.30.1-py3-none-any.whl\",\n \"metadata\": {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": [\n \"Development Status :: 5 - Production/Stable\",\n \ \"Intended Audience :: Developers\",\n \"Intended @@ -37467,6 +40927,7 @@ interactions: \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": [\n {\n \"requires\": [\n \ \"azure-common (>=1.1)\",\n \"azure-common>=1.1\",\n + \ \"azure-identity (==1.17.1)\",\n \"azure-identity==1.17.1\",\n \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n @@ -37490,10 +40951,10 @@ interactions: \ \"typing-extensions\",\n \"typing-extensions\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces - Extension\",\n \"version\": \"2.27.0\"\n },\n - \ \"sha256Digest\": \"21d076e34544770fcdc9a7c0eec0de45087b5d47b2756029fecf66e18877fba1\"\n - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.27.1-py3-none-any.whl\",\n - \ \"filename\": \"ml-2.27.1-py3-none-any.whl\",\n \"metadata\": + Extension\",\n \"version\": \"2.30.1\"\n },\n + \ \"sha256Digest\": \"b55f5c652a9cdc3c415f22d776d37b1745f2fdfe9f1cfc59047984cf67d33714\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.31.0-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.31.0-py3-none-any.whl\",\n \"metadata\": {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": [\n \"Development Status :: 5 - Production/Stable\",\n \ \"Intended Audience :: Developers\",\n \"Intended @@ -37519,6 +40980,7 @@ interactions: \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": [\n {\n \"requires\": [\n \ \"azure-common (>=1.1)\",\n \"azure-common>=1.1\",\n + \ \"azure-identity (==1.17.1)\",\n \"azure-identity==1.17.1\",\n \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n @@ -37542,10 +41004,10 @@ interactions: \ \"typing-extensions\",\n \"typing-extensions\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces - Extension\",\n \"version\": \"2.27.1\"\n },\n - \ \"sha256Digest\": \"b53a8945ea6f26d2c1deb3e4b30a0b9ae09bf6e033662e71c40b700ac543c5d1\"\n - \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.28.0-py3-none-any.whl\",\n - \ \"filename\": \"ml-2.28.0-py3-none-any.whl\",\n \"metadata\": + Extension\",\n \"version\": \"2.31.0\"\n },\n + \ \"sha256Digest\": \"ee15dbf021b31ab3165fc6922c5c9d8f21526caa279f714a6a0c112e8dfad264\"\n + \ },\n {\n \"downloadUrl\": \"https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-cli-v2-public/ml-2.31.1-py3-none-any.whl\",\n + \ \"filename\": \"ml-2.31.1-py3-none-any.whl\",\n \"metadata\": {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": [\n \"Development Status :: 5 - Production/Stable\",\n \ \"Intended Audience :: Developers\",\n \"Intended @@ -37571,6 +41033,7 @@ interactions: \"2.0\",\n \"name\": \"ml\",\n \"run_requires\": [\n {\n \"requires\": [\n \ \"azure-common (>=1.1)\",\n \"azure-common>=1.1\",\n + \ \"azure-identity (==1.17.1)\",\n \"azure-identity==1.17.1\",\n \ \"azure-mgmt-resource (<23.0.0,>=3.0.0)\",\n \ \"azure-mgmt-resource<23.0.0,>=3.0.0\",\n \ \"azure-mgmt-resourcegraph (<9.0.0,>=2.0.0)\",\n @@ -37594,8 +41057,8 @@ interactions: \ \"typing-extensions\",\n \"typing-extensions\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools AzureMachineLearningWorkspaces - Extension\",\n \"version\": \"2.28.0\"\n },\n - \ \"sha256Digest\": \"177c08432719db3d50b2e17ee47fc6aa5eb8e2400c7eda1d9d9d123a7ecc3838\"\n + Extension\",\n \"version\": \"2.31.1\"\n },\n + \ \"sha256Digest\": \"b296d51cc1bf359d7a0adda6b1d941582d3b12bf90a6475df9e653b9ddca7c68\"\n \ }\n ],\n \"mobile-network\": [\n {\n \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/mobile_network-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"mobile_network-0.1.0-py3-none-any.whl\",\n @@ -37988,6 +41451,139 @@ interactions: \"monitor-control-service\",\n \"summary\": \"Microsoft Azure Command-Line Tools MonitorClient Extension\",\n \"version\": \"1.2.0\"\n },\n \"sha256Digest\": \"3151a341845d053a4be45d9b7c04e1e15b88503ab6b110163a12b9aee6fd3cd9\"\n + \ }\n ],\n \"monitor-pipeline-group\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/monitor_pipeline_group-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"monitor_pipeline_group-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/monitor-pipeline-group\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"monitor-pipeline-group\",\n \"summary\": \"Microsoft + Azure Command-Line Tools MonitorPipelineGroup Extension.\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"cf31f9e3fa9458716f0c3d1c15698ef79b707c5bd7d146773d2b2afe42e64c29\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/monitor_pipeline_group-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"monitor_pipeline_group-1.0.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/monitor-pipeline-group\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"monitor-pipeline-group\",\n \"summary\": \"Microsoft + Azure Command-Line Tools MonitorPipelineGroup Extension.\",\n \"version\": + \"1.0.0b2\"\n },\n \"sha256Digest\": \"b247c7409eef1a7299b5a0e60069a33cbb6ec4d7f21c4e38a718b552c97d5fdb\"\n + \ }\n ],\n \"multicloud-connector\": [\n {\n + \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/multicloud_connector-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"multicloud_connector-1.0.0b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/multicloud-connector\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"multicloud-connector\",\n \"summary\": \"Microsoft Azure + Command-Line Tools MulticloudConnector Extension.\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"ad84350162ae877287f8a151920b3c4bdc6375dd419dd6101c2702db606a5d19\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/multicloud_connector-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"multicloud_connector-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/multicloud-connector\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"multicloud-connector\",\n \"summary\": \"Microsoft Azure + Command-Line Tools MulticloudConnector Extension.\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"f066fde3af8aec3c0c9b9b3919139472261192f62fc6007bac1e58dcc467e6df\"\n + \ }\n ],\n \"neon\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/neon-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"neon-1.0.0b1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/neon\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"neon\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Neon Extension.\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"240dc3387ce79e98ead27b77d2d0162c7494c94bfa8a17d1b7841ae25e436a3b\"\n \ }\n ],\n \"netappfiles-preview\": [\n {\n \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/netappfiles_preview-0.3.2-py2.py3-none-any.whl\",\n \ \"filename\": \"netappfiles_preview-0.3.2-py2.py3-none-any.whl\",\n @@ -38053,6 +41649,70 @@ interactions: \ \"summary\": \"Provides a preview for upcoming Azure NetApp Files (ANF) features.\",\n \"version\": \"1.0.0b1\"\n },\n \ \"sha256Digest\": \"a504381f819be5efef3ad0c48310c5736203612b78c052d261df21b80ccc95a9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/netappfiles_preview-1.0.0b2-py2.py3-none-any.whl\",\n + \ \"filename\": \"netappfiles_preview-1.0.0b2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/netappfiles-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"netappfiles-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"msrest\",\n \"msrest\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Provides a preview for upcoming Azure NetApp + Files (ANF) features.\",\n \"version\": \"1.0.0b2\"\n },\n + \ \"sha256Digest\": \"e10b4d543deafe0a04493b7abfa3e905cd008551b611af3a2637269b46722edc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/netappfiles_preview-1.0.0b3-py2.py3-none-any.whl\",\n + \ \"filename\": \"netappfiles_preview-1.0.0b3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/netappfiles-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"netappfiles-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"msrest\",\n \"msrest\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Provides a preview for upcoming Azure NetApp + Files (ANF) features.\",\n \"version\": \"1.0.0b3\"\n },\n + \ \"sha256Digest\": \"937def18249801f9b52edba9004ea0710e45cae9b9853276e0811bf41206da7a\"\n \ }\n ],\n \"network-analytics\": [\n {\n \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/network_analytics-1.0.0b1-py3-none-any.whl\",\n \ \"filename\": \"network_analytics-1.0.0b1-py3-none-any.whl\",\n @@ -38291,8 +41951,87 @@ interactions: \"networkcloud\",\n \"summary\": \"Support for Azure Operator Nexus network cloud commands based on 2023-10-01-preview API version.\",\n \ \"version\": \"2.0.0b2\"\n },\n \"sha256Digest\": - \"28c43560516e254ab60708c0ac8cf868795ce76e4aa9da1548584b22331af467\"\n }\n - \ ],\n \"new-relic\": [\n {\n \"downloadUrl\": + \"28c43560516e254ab60708c0ac8cf868795ce76e4aa9da1548584b22331af467\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-2.0.0b3-py3-none-any.whl\",\n + \ \"filename\": \"networkcloud-2.0.0b3-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/networkcloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"networkcloud\",\n \"summary\": \"Support for Azure Operator + Nexus network cloud commands based on 2024-06-01-preview API version.\",\n + \ \"version\": \"2.0.0b3\"\n },\n \"sha256Digest\": + \"8ff5af8e70f7f9c62300b1212b89012cb45ac02342cae6e6e46df0d2379bb55f\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-2.0.0b4-py3-none-any.whl\",\n + \ \"filename\": \"networkcloud-2.0.0b4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/networkcloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"networkcloud\",\n \"summary\": \"Support for Azure Operator + Nexus network cloud commands based on 2024-07-01 API version.\",\n \"version\": + \"2.0.0b4\"\n },\n \"sha256Digest\": \"06707a008405739a5639230f3fd094031084a69f867648503aed4039d118ad9f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/networkcloud-2.0.0b5-py3-none-any.whl\",\n + \ \"filename\": \"networkcloud-2.0.0b5-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/networkcloud\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"networkcloud\",\n \"summary\": \"Support for Azure Operator + Nexus network cloud commands based on 2024-07-01 API version.\",\n \"version\": + \"2.0.0b5\"\n },\n \"sha256Digest\": \"ac72cfc54ed35834ca6cd5c727a0fdd71e4943bcd66e65cd0ff607e8ae495c7a\"\n + \ }\n ],\n \"new-relic\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/new_relic-1.0.0b1-py3-none-any.whl\",\n \ \"filename\": \"new_relic-1.0.0b1-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": @@ -38481,6 +42220,37 @@ interactions: \ \"summary\": \"Microsoft Azure Command-Line Tools Nexusidentity Extension\",\n \"version\": \"1.0.0b1\"\n },\n \ \"sha256Digest\": \"56beac87256cef8a0815f106e57e968ca20d5ee3bdf3ecdef3fa706758622417\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nexusidentity-1.0.0b2-py3-none-any.whl\",\n + \ \"filename\": \"nexusidentity-1.0.0b2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/nexusidentity\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"nexusidentity\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-identity (==1.17.1)\",\n \"azure-identity==1.17.1\",\n + \ \"msgraph-sdk\",\n \"msgraph-sdk\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Nexusidentity + Extension\",\n \"version\": \"1.0.0b2\"\n },\n + \ \"sha256Digest\": \"44f8bf08d841ea61af58acb38ca44aea76dc26d46484ec23dea95338097814ac\"\n \ }\n ],\n \"nginx\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nginx-0.1.0-py2.py3-none-any.whl\",\n \ \"filename\": \"nginx-0.1.0-py2.py3-none-any.whl\",\n \"metadata\": @@ -38687,6 +42457,32 @@ interactions: \"nginx\",\n \"summary\": \"Microsoft Azure Command-Line Tools Nginx Extension\",\n \"version\": \"2.0.0b5\"\n },\n \ \"sha256Digest\": \"92e0b817bb863173da129abd3c326e058df3afce0fbb9851e6ff8ccea3c04773\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/nginx-2.0.0b6-py2.py3-none-any.whl\",\n + \ \"filename\": \"nginx-2.0.0b6-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.64.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"nginx\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Nginx Extension\",\n \"version\": \"2.0.0b6\"\n },\n + \ \"sha256Digest\": \"d94f77c12ce6945c823f7efa84238e398b5aec878156bbdf3112f0def1eb8960\"\n \ }\n ],\n \"notification-hub\": [\n {\n \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/notification_hub-0.1.0-py2.py3-none-any.whl\",\n \ \"filename\": \"notification_hub-0.1.0-py2.py3-none-any.whl\",\n @@ -38943,6 +42739,32 @@ interactions: \"oracle-database\",\n \"summary\": \"Microsoft Azure Command-Line Tools OracleDatabase Extension.\",\n \"version\": \"1.0.0b1\"\n \ },\n \"sha256Digest\": \"058c3de6c1e103ff0c62a188b1c606a35097a6652cb7eb6c3e5b77f77e15b5b1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/oracle_database-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"oracle_database-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/oracle-database\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"oracle-database\",\n \"summary\": \"Microsoft Azure Command-Line + Tools OracleDatabase Extension.\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"0ad716e117359e81427f8c91482f2592031877964c6952e768b66148db54dbce\"\n \ }\n ],\n \"orbital\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/orbital-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"orbital-0.1.0-py3-none-any.whl\",\n \"metadata\": @@ -39219,6 +43041,31 @@ interactions: \"peering\",\n \"summary\": \"Microsoft Azure Command-Line Tools PeeringManagementClient Extension\",\n \"version\": \"0.2.1\"\n },\n \"sha256Digest\": \"b068c12b47f17304af51431a2ae975339b7d4601a180e83916efae73d7c42600\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/peering-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"peering-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.3.1\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/peering\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"peering\",\n \"summary\": \"Microsoft Azure Command-Line + Tools PeeringManagementClient Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"fe4e3ba85c1f65966a059291e46ebeb7c956f28da2b15b541b0492765b623992\"\n \ }\n ],\n \"portal\": [\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/portal-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"portal-0.1.0-py3-none-any.whl\",\n \"metadata\": @@ -40248,6 +44095,32 @@ interactions: \ \"summary\": \"Microsoft Azure Command-Line Tools Quantum Extension\",\n \"version\": \"1.0.0b3\"\n },\n \ \"sha256Digest\": \"3301f40b76afe377bda1d08a35b8892b38b7fc1eddb5707a8a190c15bbf782b2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/quantum-1.0.0b4-py3-none-any.whl\",\n + \ \"filename\": \"quantum-1.0.0b4-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.41.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"que-contacts@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation, Quantum + Team\",\n \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/quantum\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"quantum\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Quantum Extension\",\n \"version\": \"1.0.0b4\"\n + \ },\n \"sha256Digest\": \"73c2a50559648768f123de7039ac8288c265cee4d88e94c3ced85cecbce6b552\"\n \ }\n ],\n \"qumulo\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/qumulo-1.0.0-py3-none-any.whl\",\n \ \"filename\": \"qumulo-1.0.0-py3-none-any.whl\",\n \"metadata\": @@ -40705,6 +44578,41 @@ interactions: \ \"summary\": \"Support for testing connection to Azure Database for MySQL & PostgreSQL servers.\",\n \"version\": \"1.0.6\"\n },\n \"sha256Digest\": \"49cbe8d9b7ea07a8974a29ad90247e864ed798bed5f28d0e3a57a4b37f5939e7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/rdbms_connect-1.0.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"rdbms_connect-1.0.7-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.19.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"Programming Language :: Python :: 3.9\",\n \"Programming + Language :: Python :: 3.10\",\n \"Programming Language + :: Python :: 3.11\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/rdbms-connect\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"rdbms-connect\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"mycli (~=1.27.0)\",\n \"mycli~=1.27.0\",\n + \ \"pgcli (==4.0.1)\",\n \"pgcli==4.0.1\",\n + \ \"psycopg2 (~=2.9.3)\",\n \"psycopg2~=2.9.3\",\n + \ \"setproctitle (~=1.3.3)\",\n \"setproctitle~=1.3.3\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Support for testing connection to Azure + Database for MySQL & PostgreSQL servers.\",\n \"version\": + \"1.0.7\"\n },\n \"sha256Digest\": \"eba997d4ad5acd0bdbb80a72281c2f56e88a09b2daa9ecc20ddaefd2586f543d\"\n \ }\n ],\n \"redisenterprise\": [\n {\n \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"redisenterprise-0.1.0-py3-none-any.whl\",\n @@ -40808,12 +44716,64 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"redisenterprise\",\n \"summary\": \"Microsoft Azure Command-Line - Tools RedisEnterprise Extension.\",\n \"version\": \"0.1.3\"\n - \ },\n \"sha256Digest\": \"744ef0651a7d4c734675d3d567d1162d1dd1986e5274c62613387fd93d0efe6c\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-0.1.4-py3-none-any.whl\",\n - \ \"filename\": \"redisenterprise-0.1.4-py3-none-any.whl\",\n + Tools RedisEnterprise Extension.\",\n \"version\": \"0.1.3\"\n + \ },\n \"sha256Digest\": \"744ef0651a7d4c734675d3d567d1162d1dd1986e5274c62613387fd93d0efe6c\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-0.1.4-py3-none-any.whl\",\n + \ \"filename\": \"redisenterprise-0.1.4-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/redisenterprise\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"redisenterprise\",\n \"summary\": \"Microsoft Azure Command-Line + Tools RedisEnterprise Extension.\",\n \"version\": \"0.1.4\"\n + \ },\n \"sha256Digest\": \"cb59ab44eb12b51ecc62f8a5b6302d166be5d6388cf8ff21bc49f2829128d031\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"redisenterprise-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/redisenterprise\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"redisenterprise\",\n \"summary\": \"Microsoft Azure Command-Line + Tools RedisEnterprise Extension.\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"e43737fefbb1205970254f369b0f0c33fbfd5b82d64eb2025228eb3a07bed3e7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"redisenterprise-1.1.0-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.45.0\",\n \"classifiers\": [\n \"Development + \"2.61.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -40834,12 +44794,12 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"redisenterprise\",\n \"summary\": \"Microsoft Azure Command-Line - Tools RedisEnterprise Extension.\",\n \"version\": \"0.1.4\"\n - \ },\n \"sha256Digest\": \"cb59ab44eb12b51ecc62f8a5b6302d166be5d6388cf8ff21bc49f2829128d031\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-1.0.0-py3-none-any.whl\",\n - \ \"filename\": \"redisenterprise-1.0.0-py3-none-any.whl\",\n + Tools RedisEnterprise Extension.\",\n \"version\": \"1.1.0\"\n + \ },\n \"sha256Digest\": \"acd14dc2c5b75bb49e554d970830d541ce5450868626dfcc3150f01910ba788b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"redisenterprise-1.2.0-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.minCliCoreVersion\": - \"2.45.0\",\n \"classifiers\": [\n \"Development + \"2.61.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -40860,8 +44820,34 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"redisenterprise\",\n \"summary\": \"Microsoft Azure Command-Line - Tools RedisEnterprise Extension.\",\n \"version\": \"1.0.0\"\n - \ },\n \"sha256Digest\": \"e43737fefbb1205970254f369b0f0c33fbfd5b82d64eb2025228eb3a07bed3e7\"\n + Tools RedisEnterprise Extension.\",\n \"version\": \"1.2.0\"\n + \ },\n \"sha256Digest\": \"6e776d464afaaf66456d7b8e6d36ab1a12f19054617479ea8f13633d3a49ffac\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/redisenterprise-1.2.1b1-py3-none-any.whl\",\n + \ \"filename\": \"redisenterprise-1.2.1b1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/redisenterprise\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"redisenterprise\",\n \"summary\": \"Microsoft Azure Command-Line + Tools RedisEnterprise Extension.\",\n \"version\": \"1.2.1b1\"\n + \ },\n \"sha256Digest\": \"9816e8571a8689864973327b6331d243703da31b40c0539ed89136b9dbf6c9e0\"\n \ }\n ],\n \"reservation\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/reservation-0.2.0-py3-none-any.whl\",\n \ \"filename\": \"reservation-0.2.0-py3-none-any.whl\",\n \"metadata\": @@ -41686,6 +45672,81 @@ interactions: \"scvmm\",\n \"summary\": \"Microsoft Azure Command-Line Tools SCVMM Extension\",\n \"version\": \"1.0.0\"\n },\n \ \"sha256Digest\": \"565aa9d75dd4d276df2f8ffec5311bd2ae16a2d6172d525a7763fc5972b262b7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-1.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"scvmm-1.1.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scvmm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scvmm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SCVMM Extension\",\n \"version\": \"1.1.0\"\n },\n + \ \"sha256Digest\": \"dfbf446da90a9ed211f3a6554eea713b569fc8747398af9a5c2fb74220d0fa95\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-1.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"scvmm-1.1.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scvmm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scvmm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SCVMM Extension\",\n \"version\": \"1.1.1\"\n },\n + \ \"sha256Digest\": \"7d704578bc5eb60b8105de0b4a924176581a4cf2fd162b0896d81246f7f73a68\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-1.1.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"scvmm-1.1.2-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/scvmm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"scvmm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools SCVMM Extension\",\n \"version\": \"1.1.2\"\n },\n + \ \"sha256Digest\": \"b1b2e66c0ff057976d48f18a43960f4ff5802b5502e9e6d2d5a5d8f1b4e8b6f2\"\n \ }\n ],\n \"self-help\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/self_help-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"self_help-0.1.0-py3-none-any.whl\",\n \"metadata\": @@ -42342,17 +46403,183 @@ interactions: (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n \ \"run_requires\": [\n {\n \"requires\": - [\n \"PyMySQL (==1.0.2)\",\n \"azure-core\",\n + [\n \"PyMySQL (==1.0.2)\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"psycopg2-binary (==2.9.5)\",\n \"pyodbc + (==4.0.35)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"0.3.4\"\n },\n + \ \"sha256Digest\": \"5b68cc4fcf6cde9edd4691dd55a9bb063fcce0f2c740abbab798d65804cd07a2\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.5-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-0.3.5-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"psycopg2-binary (==2.9.5)\",\n \"pyodbc + (==4.0.35)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"0.3.5\"\n },\n + \ \"sha256Digest\": \"05df173778361eed918fa63d241704b47e479443f053bf3ff327f07946c5f553\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.6-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-0.3.6-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"psycopg2-binary (==2.9.5)\",\n \"pyodbc + (==4.0.35)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"0.3.6\"\n },\n + \ \"sha256Digest\": \"c9e6d013ae6142a4d4fdefbec40b89c4af37ea1c4c4840b02f27d3e9573a1357\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.8-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-0.3.8-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"psycopg2-binary (==2.9.5)\",\n \"pyodbc + (==4.0.35)\"\n ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"0.3.8\"\n },\n + \ \"sha256Digest\": \"546af88e93fb857552183869a12001020897f7b724cc1f350936971635302ef4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.9-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-0.3.9-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b1\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"0.3.9\"\n },\n + \ \"sha256Digest\": \"48e3b58838945f62f6aecac7579b00f3a71d6d4db7f8f34af39d6308a26bd445\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.11-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-0.3.11-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n - \ \"psycopg2-binary (==2.9.5)\",\n \"pyodbc - (==4.0.35)\"\n ]\n }\n ],\n + \ \"azure-mgmt-servicelinker==1.2.0b1\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless - Extension\",\n \"version\": \"0.3.4\"\n },\n - \ \"sha256Digest\": \"5b68cc4fcf6cde9edd4691dd55a9bb063fcce0f2c740abbab798d65804cd07a2\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.5-py3-none-any.whl\",\n - \ \"filename\": \"serviceconnector_passwordless-0.3.5-py3-none-any.whl\",\n + Extension\",\n \"version\": \"0.3.11\"\n },\n + \ \"sha256Digest\": \"bb8d273e2b221c439fb5d418ddf2d8591e3382f2efba85ce384e6dcb93488a38\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.12-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-0.3.12-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -42374,17 +46601,20 @@ interactions: (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n \ \"run_requires\": [\n {\n \"requires\": - [\n \"PyMySQL (==1.0.2)\",\n \"azure-core\",\n + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n - \ \"psycopg2-binary (==2.9.5)\",\n \"pyodbc - (==4.0.35)\"\n ]\n }\n ],\n + \ \"azure-mgmt-servicelinker==1.2.0b1\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless - Extension\",\n \"version\": \"0.3.5\"\n },\n - \ \"sha256Digest\": \"05df173778361eed918fa63d241704b47e479443f053bf3ff327f07946c5f553\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.6-py3-none-any.whl\",\n - \ \"filename\": \"serviceconnector_passwordless-0.3.6-py3-none-any.whl\",\n + Extension\",\n \"version\": \"0.3.12\"\n },\n + \ \"sha256Digest\": \"7d3fadef5e1dddc362f043c8b0a802668c24187c68fdf8e33797250f5276ee2f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.13-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-0.3.13-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -42406,17 +46636,20 @@ interactions: (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n \ \"run_requires\": [\n {\n \"requires\": - [\n \"PyMySQL (==1.0.2)\",\n \"azure-core\",\n + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n - \ \"psycopg2-binary (==2.9.5)\",\n \"pyodbc - (==4.0.35)\"\n ]\n }\n ],\n + \ \"azure-mgmt-servicelinker==1.2.0b1\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless - Extension\",\n \"version\": \"0.3.6\"\n },\n - \ \"sha256Digest\": \"c9e6d013ae6142a4d4fdefbec40b89c4af37ea1c4c4840b02f27d3e9573a1357\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.8-py3-none-any.whl\",\n - \ \"filename\": \"serviceconnector_passwordless-0.3.8-py3-none-any.whl\",\n + Extension\",\n \"version\": \"0.3.13\"\n },\n + \ \"sha256Digest\": \"0948c4b5cb9ef84ad4470b3947d67034aef0531fba24d97782f48e0aacb2801a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-1.0.0-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + false,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -42438,17 +46671,20 @@ interactions: (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n \ \"run_requires\": [\n {\n \"requires\": - [\n \"PyMySQL (==1.0.2)\",\n \"azure-core\",\n + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n - \ \"psycopg2-binary (==2.9.5)\",\n \"pyodbc - (==4.0.35)\"\n ]\n }\n ],\n + \ \"azure-mgmt-servicelinker==1.2.0b1\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless - Extension\",\n \"version\": \"0.3.8\"\n },\n - \ \"sha256Digest\": \"546af88e93fb857552183869a12001020897f7b724cc1f350936971635302ef4\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.9-py3-none-any.whl\",\n - \ \"filename\": \"serviceconnector_passwordless-0.3.9-py3-none-any.whl\",\n + Extension\",\n \"version\": \"1.0.0\"\n },\n + \ \"sha256Digest\": \"cb065e4ca01b71023bd7c6c242f20123eeb8ff90c2178b035e8de58552740488\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-1.0.1-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-1.0.1-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + false,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -42478,12 +46714,12 @@ interactions: \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless - Extension\",\n \"version\": \"0.3.9\"\n },\n - \ \"sha256Digest\": \"48e3b58838945f62f6aecac7579b00f3a71d6d4db7f8f34af39d6308a26bd445\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.11-py3-none-any.whl\",\n - \ \"filename\": \"serviceconnector_passwordless-0.3.11-py3-none-any.whl\",\n + Extension\",\n \"version\": \"1.0.1\"\n },\n + \ \"sha256Digest\": \"04e4cc595ee68484f28159ba010c3feda561ee68cd0f386ab1b72045f2d19272\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-1.0.2-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-1.0.2-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.46.0\",\n \"classifiers\": + false,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -42513,12 +46749,12 @@ interactions: \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless - Extension\",\n \"version\": \"0.3.11\"\n },\n - \ \"sha256Digest\": \"bb8d273e2b221c439fb5d418ddf2d8591e3382f2efba85ce384e6dcb93488a38\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.12-py3-none-any.whl\",\n - \ \"filename\": \"serviceconnector_passwordless-0.3.12-py3-none-any.whl\",\n + Extension\",\n \"version\": \"1.0.2\"\n },\n + \ \"sha256Digest\": \"ce27bafbeb27a848c0294e085f95c81778b64d67537e7efbc6a5ce09b0ede902\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-1.0.3-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-1.0.3-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + false,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -42548,12 +46784,12 @@ interactions: \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless - Extension\",\n \"version\": \"0.3.12\"\n },\n - \ \"sha256Digest\": \"7d3fadef5e1dddc362f043c8b0a802668c24187c68fdf8e33797250f5276ee2f\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-0.3.13-py3-none-any.whl\",\n - \ \"filename\": \"serviceconnector_passwordless-0.3.13-py3-none-any.whl\",\n + Extension\",\n \"version\": \"1.0.3\"\n },\n + \ \"sha256Digest\": \"066ed68dcfc4b6991ea38579874ce1967d8d9636838023d4a03910026467d348\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.0-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-2.0.0-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - true,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -42577,18 +46813,18 @@ interactions: \ \"run_requires\": [\n {\n \"requires\": [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n \ \"azure-core\",\n \"azure-core\",\n - \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n - \ \"azure-mgmt-servicelinker==1.2.0b1\",\n \"psycopg2-binary + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless - Extension\",\n \"version\": \"0.3.13\"\n },\n - \ \"sha256Digest\": \"0948c4b5cb9ef84ad4470b3947d67034aef0531fba24d97782f48e0aacb2801a\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-1.0.0-py3-none-any.whl\",\n - \ \"filename\": \"serviceconnector_passwordless-1.0.0-py3-none-any.whl\",\n + Extension\",\n \"version\": \"2.0.0\"\n },\n + \ \"sha256Digest\": \"2da75d871e2f4ba0585d6609978beaa17511ba7ffbc298aaf10d2c58b8310cb1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.1-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-2.0.1-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - false,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -42612,18 +46848,18 @@ interactions: \ \"run_requires\": [\n {\n \"requires\": [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n \ \"azure-core\",\n \"azure-core\",\n - \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n - \ \"azure-mgmt-servicelinker==1.2.0b1\",\n \"psycopg2-binary + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless - Extension\",\n \"version\": \"1.0.0\"\n },\n - \ \"sha256Digest\": \"cb065e4ca01b71023bd7c6c242f20123eeb8ff90c2178b035e8de58552740488\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-1.0.1-py3-none-any.whl\",\n - \ \"filename\": \"serviceconnector_passwordless-1.0.1-py3-none-any.whl\",\n + Extension\",\n \"version\": \"2.0.1\"\n },\n + \ \"sha256Digest\": \"65f6db04c42d74474534a8dc3d59066cc04325b72551a7045fd9d298350b3ad0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.2-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-2.0.2-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - false,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -42647,18 +46883,18 @@ interactions: \ \"run_requires\": [\n {\n \"requires\": [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n \ \"azure-core\",\n \"azure-core\",\n - \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n - \ \"azure-mgmt-servicelinker==1.2.0b1\",\n \"psycopg2-binary + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless - Extension\",\n \"version\": \"1.0.1\"\n },\n - \ \"sha256Digest\": \"04e4cc595ee68484f28159ba010c3feda561ee68cd0f386ab1b72045f2d19272\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-1.0.2-py3-none-any.whl\",\n - \ \"filename\": \"serviceconnector_passwordless-1.0.2-py3-none-any.whl\",\n + Extension\",\n \"version\": \"2.0.2\"\n },\n + \ \"sha256Digest\": \"19001ff4ebcd5b4b2cc890a7cdef6fdd1bc404d9e29c03c5adcfe59355864671\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.3-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-2.0.3-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - false,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -42682,18 +46918,18 @@ interactions: \ \"run_requires\": [\n {\n \"requires\": [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n \ \"azure-core\",\n \"azure-core\",\n - \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n - \ \"azure-mgmt-servicelinker==1.2.0b1\",\n \"psycopg2-binary + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless - Extension\",\n \"version\": \"1.0.2\"\n },\n - \ \"sha256Digest\": \"ce27bafbeb27a848c0294e085f95c81778b64d67537e7efbc6a5ce09b0ede902\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-1.0.3-py3-none-any.whl\",\n - \ \"filename\": \"serviceconnector_passwordless-1.0.3-py3-none-any.whl\",\n + Extension\",\n \"version\": \"2.0.3\"\n },\n + \ \"sha256Digest\": \"045240af31f6ba900b9743f10c2e7a552e5c09c31aec8bec63ce05e7e96fd7e7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.5-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-2.0.5-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": - false,\n \"azext.minCliCoreVersion\": \"2.53.0\",\n \"classifiers\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \"Intended Audience :: System Administrators\",\n \"Programming Language :: @@ -42717,16 +46953,16 @@ interactions: \ \"run_requires\": [\n {\n \"requires\": [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n \ \"azure-core\",\n \"azure-core\",\n - \ \"azure-mgmt-servicelinker (==1.2.0b1)\",\n - \ \"azure-mgmt-servicelinker==1.2.0b1\",\n \"psycopg2-binary + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless - Extension\",\n \"version\": \"1.0.3\"\n },\n - \ \"sha256Digest\": \"066ed68dcfc4b6991ea38579874ce1967d8d9636838023d4a03910026467d348\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.0-py3-none-any.whl\",\n - \ \"filename\": \"serviceconnector_passwordless-2.0.0-py3-none-any.whl\",\n + Extension\",\n \"version\": \"2.0.5\"\n },\n + \ \"sha256Digest\": \"27b8c5f6e1b576ce2c3a74e967851398e2e0bca77faaccb890410e66dcf9c304\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.6-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-2.0.6-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -42758,10 +46994,10 @@ interactions: \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless - Extension\",\n \"version\": \"2.0.0\"\n },\n - \ \"sha256Digest\": \"2da75d871e2f4ba0585d6609978beaa17511ba7ffbc298aaf10d2c58b8310cb1\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.1-py3-none-any.whl\",\n - \ \"filename\": \"serviceconnector_passwordless-2.0.1-py3-none-any.whl\",\n + Extension\",\n \"version\": \"2.0.6\"\n },\n + \ \"sha256Digest\": \"7f24220cbd58d682d1bc765f40c2663dbd3014e88b7684a8756e43675730e6e0\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.7-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-2.0.7-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -42793,10 +47029,10 @@ interactions: \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless - Extension\",\n \"version\": \"2.0.1\"\n },\n - \ \"sha256Digest\": \"65f6db04c42d74474534a8dc3d59066cc04325b72551a7045fd9d298350b3ad0\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.2-py3-none-any.whl\",\n - \ \"filename\": \"serviceconnector_passwordless-2.0.2-py3-none-any.whl\",\n + Extension\",\n \"version\": \"2.0.7\"\n },\n + \ \"sha256Digest\": \"e71ad49f38ec94a516281352e4498e578f2fca2aa4d233f3f9a93c9e22635e61\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-3.0.0-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-3.0.0-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -42828,10 +47064,10 @@ interactions: \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless - Extension\",\n \"version\": \"2.0.2\"\n },\n - \ \"sha256Digest\": \"19001ff4ebcd5b4b2cc890a7cdef6fdd1bc404d9e29c03c5adcfe59355864671\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.3-py3-none-any.whl\",\n - \ \"filename\": \"serviceconnector_passwordless-2.0.3-py3-none-any.whl\",\n + Extension\",\n \"version\": \"3.0.0\"\n },\n + \ \"sha256Digest\": \"119d2bab1cedc9cf24e7935e0273af98a6ed7472c62baf7578152195a1ff03e4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-3.0.1-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-3.0.1-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -42863,10 +47099,10 @@ interactions: \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless - Extension\",\n \"version\": \"2.0.3\"\n },\n - \ \"sha256Digest\": \"045240af31f6ba900b9743f10c2e7a552e5c09c31aec8bec63ce05e7e96fd7e7\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.5-py3-none-any.whl\",\n - \ \"filename\": \"serviceconnector_passwordless-2.0.5-py3-none-any.whl\",\n + Extension\",\n \"version\": \"3.0.1\"\n },\n + \ \"sha256Digest\": \"499cb8a10273a6137f1b1731f25de0a1a78052b7e77fc981578f91a707550bdd\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-3.0.2-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-3.0.2-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -42898,10 +47134,10 @@ interactions: \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless - Extension\",\n \"version\": \"2.0.5\"\n },\n - \ \"sha256Digest\": \"27b8c5f6e1b576ce2c3a74e967851398e2e0bca77faaccb890410e66dcf9c304\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-2.0.6-py3-none-any.whl\",\n - \ \"filename\": \"serviceconnector_passwordless-2.0.6-py3-none-any.whl\",\n + Extension\",\n \"version\": \"3.0.2\"\n },\n + \ \"sha256Digest\": \"9fa9a04604f100bbdc3ab9e1d8f2a823dcb6a9cc1a6174bb2b6ba22b98f24b8d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-3.1.0-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-3.1.0-py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -42933,8 +47169,78 @@ interactions: \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless - Extension\",\n \"version\": \"2.0.6\"\n },\n - \ \"sha256Digest\": \"7f24220cbd58d682d1bc765f40c2663dbd3014e88b7684a8756e43675730e6e0\"\n + Extension\",\n \"version\": \"3.1.0\"\n },\n + \ \"sha256Digest\": \"3d747aba647b7e87f7e73000fde80052552e9f8ae187cf45e05e867e82e767eb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-3.1.1-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-3.1.1-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.0.2)\",\n \"PyMySQL==1.0.2\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary + (==2.9.5)\",\n \"psycopg2-binary==2.9.5\",\n + \ \"pyodbc (==4.0.35)\",\n \"pyodbc==4.0.35\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"3.1.1\"\n },\n + \ \"sha256Digest\": \"1b1c248844162b1f5065841b26da1d9b7c63b03336045001a1f02835efb2f7e9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/serviceconnector_passwordless-3.1.2-py3-none-any.whl\",\n + \ \"filename\": \"serviceconnector_passwordless-3.1.2-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.60.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/serviceconnector-passwordless\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"serviceconnector-passwordless\",\n + \ \"run_requires\": [\n {\n \"requires\": + [\n \"PyMySQL (==1.1.1)\",\n \"PyMySQL==1.1.1\",\n + \ \"azure-core\",\n \"azure-core\",\n + \ \"azure-mgmt-servicelinker (==1.2.0b2)\",\n + \ \"azure-mgmt-servicelinker==1.2.0b2\",\n \"psycopg2-binary + (==2.9.9)\",\n \"psycopg2-binary==2.9.9\",\n + \ \"pyodbc (==5.1.0)\",\n \"pyodbc==5.1.0\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Serviceconnector-passwordless + Extension\",\n \"version\": \"3.1.2\"\n },\n + \ \"sha256Digest\": \"3097e0d58a8ac4715b6d4dee7b2c6d7f4311e2296baddd87c18eaa994e91cfeb\"\n \ }\n ],\n \"site-recovery\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/site_recovery-1.0.0-py3-none-any.whl\",\n \ \"filename\": \"site_recovery-1.0.0-py3-none-any.whl\",\n @@ -44913,6 +49219,58 @@ interactions: \"spring\",\n \"summary\": \"Microsoft Azure Command-Line Tools spring Extension\",\n \"version\": \"1.25.0\"\n },\n \ \"sha256Digest\": \"2b9cf4ae2fd52b5f644bfefba69ed5e574404597e3cab0e3a9b8e44e7b03363f\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.25.1-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.25.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.25.1\"\n },\n + \ \"sha256Digest\": \"9eb8a6f2f77b19c9f9809526bb701076590ddb35f6b2ec431ce318b96cc40733\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/spring-1.26.0-py3-none-any.whl\",\n + \ \"filename\": \"spring-1.26.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/spring\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"spring\",\n \"summary\": \"Microsoft Azure Command-Line + Tools spring Extension\",\n \"version\": \"1.26.0\"\n },\n + \ \"sha256Digest\": \"e82c6a3aec88a0736c76147707b64e64cfd9b85450335d9e0facc790e1e761b4\"\n \ }\n ],\n \"spring-cloud\": [\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/spring_cloud-0.1.0-py2.py3-none-any.whl\",\n \ \"filename\": \"spring_cloud-0.1.0-py2.py3-none-any.whl\",\n @@ -46914,6 +51272,37 @@ interactions: \ \"summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH Certificates\",\n \"version\": \"2.0.5\"\n },\n \ \"sha256Digest\": \"80c98b10d7bf1ce4005b7694aedd05c47355456775ba6125308be65fb0fefc93\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/ssh-2.0.6-py3-none-any.whl\",\n + \ \"filename\": \"ssh-2.0.6-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.45.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/ssh\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"ssh\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"oras (==0.1.30)\",\n \"oras==0.1.30\",\n + \ \"oschmod (==0.3.12)\",\n \"oschmod==0.3.12\"\n + \ ]\n }\n ],\n + \ \"summary\": \"SSH into Azure VMs using RBAC and AAD OpenSSH + Certificates\",\n \"version\": \"2.0.6\"\n },\n + \ \"sha256Digest\": \"3d2206b4e6bdd56c69cc509ab99e5de6dc7f66d091b0185b7a3b557d8dc182cb\"\n \ }\n ],\n \"stack-hci\": [\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/stack_hci-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"stack_hci-0.1.0-py3-none-any.whl\",\n \"metadata\": @@ -47448,6 +51837,107 @@ interactions: \"stack-hci-vm\",\n \"summary\": \"Microsoft Azure Command-Line Tools Stack-HCi-VM Extension\",\n \"version\": \"1.1.16\"\n \ },\n \"sha256Digest\": \"6b08c750b3c3898aab17c459ff626210c17ad12f960f2ab89204765a17d530da\"\n + \ },\n {\n \"downloadUrl\": \"https://hciarcvmsstorage.z13.web.core.windows.net/cli-extensions/stack_hci_vm-1.1.20-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci_vm-1.1.20-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.15.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci-vm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci-vm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Stack-HCi-VM Extension\",\n \"version\": \"1.1.20\"\n + \ },\n \"sha256Digest\": \"7de544b8058ab11d9713b551db65aeaec6b8e5832cdadbbf26ccb7a4a282db6b\"\n + \ },\n {\n \"downloadUrl\": \"https://hciarcvmsstorage.z13.web.core.windows.net/cli-extensions/stack_hci_vm-1.2.3-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci_vm-1.2.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci-vm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci-vm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Stack-HCi-VM Extension\",\n \"version\": \"1.2.3\"\n + \ },\n \"sha256Digest\": \"356ac7cb14af4c617b0f87ff5b9698eea08f56da84979c07f90fcc0f34cc8287\"\n + \ },\n {\n \"downloadUrl\": \"https://hciarcvmsstorage.z13.web.core.windows.net/cli-extensions/stack_hci_vm-1.3.0-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci_vm-1.3.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci-vm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci-vm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Stack-HCi-VM Extension\",\n \"version\": \"1.3.0\"\n + \ },\n \"sha256Digest\": \"19553e50d59cafcc19166be7e91be43c725f7abae1d8338914f8e6043853fc09\"\n + \ },\n {\n \"downloadUrl\": \"https://hciarcvmsstorage.z13.web.core.windows.net/cli-extensions/stack_hci_vm-1.4.3-py3-none-any.whl\",\n + \ \"filename\": \"stack_hci_vm-1.4.3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.15.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/stack-hci-vm\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"stack-hci-vm\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Stack-HCi-VM Extension\",\n \"version\": \"1.4.3\"\n + \ },\n \"sha256Digest\": \"4f5ba538e830dcef195147c8ba71c739b2bd494cbb9a8ab51e831c40bc1f3329\"\n \ }\n ],\n \"standbypool\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/standbypool-1.0.0b1-py3-none-any.whl\",\n \ \"filename\": \"standbypool-1.0.0b1-py3-none-any.whl\",\n @@ -47475,6 +51965,32 @@ interactions: \"standbypool\",\n \"summary\": \"Microsoft Azure Command-Line Tools Standbypool Extension.\",\n \"version\": \"1.0.0b1\"\n \ },\n \"sha256Digest\": \"44c03e320c8b49f52390e3c11d61b25a67afeffc18d62baa522c373142de0e15\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/standbypool-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"standbypool-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/standbypool\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"standbypool\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Standbypool Extension.\",\n \"version\": \"1.0.0\"\n + \ },\n \"sha256Digest\": \"5a5639537d26ffbb06f38e68bd6c939ed90905d9acb18c07161823732fb27cf9\"\n \ }\n ],\n \"staticwebapp\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/staticwebapp-1.0.0-py3-none-any.whl\",\n \ \"filename\": \"staticwebapp-1.0.0-py3-none-any.whl\",\n \"metadata\": @@ -47894,6 +52410,32 @@ interactions: \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure Command-Line Tools Storage-blob-preview Extension\",\n \"version\": \"0.7.2\"\n },\n \"sha256Digest\": \"002b7779f4c6531fdb714f77bcea5d3d96007a7ff5b86869f8e56aad98298b23\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_blob_preview-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_blob_preview-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.27.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-blob-preview\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storage-blob-preview\",\n \"summary\": \"Microsoft Azure + Command-Line Tools Storage-blob-preview Extension\",\n \"version\": + \"1.0.0b1\"\n },\n \"sha256Digest\": \"1ffe451e41657c8f28a22abee387371d11cedd80d2e52cfcbed0adac0a917b41\"\n \ }\n ],\n \"storage-mover\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_mover-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"storage_mover-0.1.0-py3-none-any.whl\",\n @@ -48701,6 +53243,70 @@ interactions: \ \"summary\": \"Provides a preview for upcoming storage features.\",\n \"version\": \"1.0.0b2\"\n },\n \ \"sha256Digest\": \"2de8fa421622928a308bb70048c3fdf40400bad3b34afd601d0b3afcd8b82764\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-1.0.0b3-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-1.0.0b3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"storage-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\",\n \"azure-core\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Provides a preview for upcoming storage + features.\",\n \"version\": \"1.0.0b3\"\n },\n + \ \"sha256Digest\": \"139bf5c03e9f57724a8da0b0887144bf2e9fe51f604cdc8c7d0d7398b29157e9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storage_preview-1.0.0b4-py2.py3-none-any.whl\",\n + \ \"filename\": \"storage_preview-1.0.0b4-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storage-preview\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"storage-preview\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"azure-core\",\n \"azure-core\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Provides a preview for upcoming storage + features.\",\n \"version\": \"1.0.0b4\"\n },\n + \ \"sha256Digest\": \"5c7aaed2e945b19f643f66c3c8ef3c59c64630549b44efd6df4f02ec6ce50e64\"\n \ }\n ],\n \"storagesync\": [\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/storagesync-0.1.0-py2.py3-none-any.whl\",\n \ \"filename\": \"storagesync-0.1.0-py2.py3-none-any.whl\",\n @@ -48811,6 +53417,33 @@ interactions: \"storagesync\",\n \"summary\": \"Microsoft Azure Command-Line Tools MicrosoftStorageSync Extension\",\n \"version\": \"1.0.0\"\n },\n \"sha256Digest\": \"1f6997e186199058e60d8fdc020c407d4f92d8e78286189c1887e57a371b43c1\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/storagesync-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"storagesync-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/storagesync\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"storagesync\",\n \"summary\": \"Microsoft Azure Command-Line + Tools MicrosoftStorageSync Extension\",\n \"version\": + \"1.0.1\"\n },\n \"sha256Digest\": \"7f2ba91a7a44741f4384b44ba7cea73a8a03b5d385b43404cb4951dd2ea5dc5a\"\n \ }\n ],\n \"stream-analytics\": [\n {\n \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/stream_analytics-0.1.0-py2.py3-none-any.whl\",\n \ \"filename\": \"stream_analytics-0.1.0-py2.py3-none-any.whl\",\n @@ -48998,6 +53631,32 @@ interactions: \"subscription\",\n \"summary\": \"Support for subscription management preview.\",\n \"version\": \"0.1.5\"\n },\n \ \"sha256Digest\": \"ff7896aebc46862a6d30ac5f4cf64bdd40cb50e5437cea299590896d75f1013e\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/subscription-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"subscription-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.61.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.7\",\n \"Programming + Language :: Python :: 3.8\",\n \"Programming Language + :: Python :: 3.9\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/subscription\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"subscription\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Subscription Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"3f3bb4fbb761174d13a0f863362b74f388bc648f7f296f9b6e2191b35507ae4f\"\n \ }\n ],\n \"support\": [\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/support-0.1.1-py2.py3-none-any.whl\",\n \ \"filename\": \"support-0.1.1-py2.py3-none-any.whl\",\n \"metadata\": @@ -49175,6 +53834,58 @@ interactions: \"support\",\n \"summary\": \"Microsoft Azure Command-Line Tools Support Extension\",\n \"version\": \"2.0.0\"\n },\n \ \"sha256Digest\": \"5dde97f8fb12eaa258530f68ec2cae00a957f30479835e9f5ed057940312741a\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/support-2.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"support-2.0.1-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.minCliCoreVersion\": \"2.57.0\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 3\",\n + \ \"Programming Language :: Python :: 3.6\",\n \"Programming + Language :: Python :: 3.7\",\n \"Programming Language + :: Python :: 3.8\",\n \"License :: OSI Approved :: + MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/azure/azure-cli-extensions/tree/main/src/support\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"support\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Support Extension\",\n \"version\": \"2.0.1\"\n },\n + \ \"sha256Digest\": \"3f070154f839464aa24b54990d87d2dba99d6da60ec3ef314a74ba22c268fec4\"\n + \ }\n ],\n \"terraform\": [\n {\n \"downloadUrl\": + \"https://azcliprod.blob.core.windows.net/cli-extensions/terraform-1.0.0b1-py3-none-any.whl\",\n + \ \"filename\": \"terraform-1.0.0b1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/terraform\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"terraform\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Terraform Extension.\",\n \"version\": \"1.0.0b1\"\n + \ },\n \"sha256Digest\": \"80fde2b896b707fd83f83821809682079bd3bb032aa9cb04ba0d2595b3673f27\"\n \ }\n ],\n \"timeseriesinsights\": [\n {\n \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/timeseriesinsights-0.1.0-py3-none-any.whl\",\n \ \"filename\": \"timeseriesinsights-0.1.0-py3-none-any.whl\",\n @@ -49459,6 +54170,32 @@ interactions: \"traffic-collector\",\n \"summary\": \"Microsoft Azure Command-Line Tools TrafficCollector Extension.\",\n \"version\": \"0.1.3\"\n },\n \"sha256Digest\": \"a144a4fda3bce84db22277bd8611084ae1ae39e0bb8c7b50619ec378711f57ba\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/traffic_collector-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"traffic_collector-1.0.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.40.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/traffic-collector\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"traffic-collector\",\n \"summary\": \"Microsoft Azure + Command-Line Tools TrafficCollector Extension.\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"4695abb53723ea509f0f7a0bc6d4f4be5cc0382fe89b76671ee0785a05157dfc\"\n \ }\n ],\n \"trustedsigning\": [\n {\n \ \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/trustedsigning-1.0.0b1-py3-none-any.whl\",\n \ \"filename\": \"trustedsigning-1.0.0b1-py3-none-any.whl\",\n @@ -49747,6 +54484,32 @@ interactions: \"virtual-network-manager\",\n \"summary\": \"Microsoft Azure Command-Line Tools NetworkManagementClient Extension\",\n \"version\": \"1.2.0\"\n },\n \"sha256Digest\": \"7f9f239fd7904645beacc2b738dd4660fb36779966e9b2331c43826e37564793\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_manager-1.3.0-py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_manager-1.3.0-py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.61.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/network-manager\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-manager\",\n \"summary\": \"Microsoft + Azure Command-Line Tools NetworkManagementClient Extension\",\n \"version\": + \"1.3.0\"\n },\n \"sha256Digest\": \"f16f992f98fd03c01dcef8a40f9b84de2367ff9e8850b48663a9bb1cb55b7bd4\"\n \ }\n ],\n \"virtual-network-tap\": [\n {\n \ \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_network_tap-0.1.0-py2.py3-none-any.whl\",\n \ \"filename\": \"virtual_network_tap-0.1.0-py2.py3-none-any.whl\",\n @@ -49776,6 +54539,32 @@ interactions: \"virtual-network-tap\",\n \"summary\": \"Manage virtual network taps (VTAP).\",\n \"version\": \"0.1.0\"\n },\n \ \"sha256Digest\": \"7e3f634f8eb701cf6fef504159785bc90e6f5bd2482e459469dd9ab30601aa35\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_network_tap-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_network_tap-1.0.0b1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + true,\n \"azext.minCliCoreVersion\": \"2.0.46\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/virtual-network-tap\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-network-tap\",\n \"summary\": \"Manage virtual + network taps (VTAP).\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"ee5f6dcfc09fc09e0c3bbd386b4d3bc6cc1f8a3dde8ed550804f43ed4c3cb7ba\"\n \ }\n ],\n \"virtual-wan\": [\n {\n \"downloadUrl\": \"https://azurecliprod.blob.core.windows.net/cli-extensions/virtual_wan-0.1.2-py2.py3-none-any.whl\",\n \ \"filename\": \"virtual_wan-0.1.2-py2.py3-none-any.whl\",\n @@ -50385,6 +55174,32 @@ interactions: \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, VPN gateways and VPN sites.\",\n \"version\": \"1.0.0\"\n \ },\n \"sha256Digest\": \"0ef7b4bf9ffd0aa1ad5c50e15a343276636bcfe0296e52d2ee5f0b75ce70633d\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/virtual_wan-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"virtual_wan-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.minCliCoreVersion\": + \"2.55.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 2\",\n \"Programming Language + :: Python :: 2.7\",\n \"Programming Language :: Python + :: 3\",\n \"Programming Language :: Python :: 3.4\",\n + \ \"Programming Language :: Python :: 3.5\",\n \"Programming + Language :: Python :: 3.6\",\n \"License :: OSI Approved + :: MIT License\"\n ],\n \"extensions\": + {\n \"python.details\": {\n \"contacts\": + [\n {\n \"email\": + \"azpycli@microsoft.com\",\n \"name\": + \"Microsoft Corporation\",\n \"role\": + \"author\"\n }\n ],\n + \ \"project_urls\": {\n \"Home\": + \"https://github.com/Azure/azure-cli-extensions/tree/main/src/virtual-wan\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"virtual-wan\",\n \"summary\": \"Manage virtual WAN, hubs, + VPN gateways and VPN sites.\",\n \"version\": \"1.0.1\"\n + \ },\n \"sha256Digest\": \"2db6c253d43862d06a4525073d67b61f1d34b7c8832162bd3b0bfffd24b9ada6\"\n \ }\n ],\n \"vm-repair\": [\n {\n \"downloadUrl\": \"https://azurecomputeaidrepair.blob.core.windows.net/prod/vm_repair-0.2.6-py2.py3-none-any.whl\",\n \ \"filename\": \"vm_repair-0.2.6-py2.py3-none-any.whl\",\n @@ -51306,10 +56121,94 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"vm-repair\",\n \"summary\": \"Auto repair commands to - fix VMs.\",\n \"version\": \"1.0.0b1\"\n },\n - \ \"sha256Digest\": \"7e6b9fb9952a56811d65de87b87b0403a6161edfa82284a43fa58f176e397b8b\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.1-py2.py3-none-any.whl\",\n - \ \"filename\": \"vm_repair-1.0.1-py2.py3-none-any.whl\",\n + fix VMs.\",\n \"version\": \"1.0.0b1\"\n },\n + \ \"sha256Digest\": \"7e6b9fb9952a56811d65de87b87b0403a6161edfa82284a43fa58f176e397b8b\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"1.0.1\"\n },\n + \ \"sha256Digest\": \"0b8d2814ba628765785accf730a220e5805f700a6d1f07a653f1c0d8f8e8dc03\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.2-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.2-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"1.0.2\"\n },\n + \ \"sha256Digest\": \"54945c836b3a91aed5a92eaca872c47e364dd3e846ab02aca637412488ead5b4\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.3-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.3-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vm-repair\",\n \"summary\": \"Auto repair commands to + fix VMs.\",\n \"version\": \"1.0.3\"\n },\n + \ \"sha256Digest\": \"3ea7181d6e5337cc9c85176467bafc413a2c1111a21ec06dd3e406f9cac82a93\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.4-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.4-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -51334,10 +56233,10 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"vm-repair\",\n \"summary\": \"Auto repair commands to - fix VMs.\",\n \"version\": \"1.0.1\"\n },\n - \ \"sha256Digest\": \"0b8d2814ba628765785accf730a220e5805f700a6d1f07a653f1c0d8f8e8dc03\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.2-py2.py3-none-any.whl\",\n - \ \"filename\": \"vm_repair-1.0.2-py2.py3-none-any.whl\",\n + fix VMs.\",\n \"version\": \"1.0.4\"\n },\n + \ \"sha256Digest\": \"2adddc6d8cba9c6846a0c76f2612177a4d5b0813732f83534e4f8d0a48ddf9ab\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.5-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.5-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -51362,10 +56261,10 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"vm-repair\",\n \"summary\": \"Auto repair commands to - fix VMs.\",\n \"version\": \"1.0.2\"\n },\n - \ \"sha256Digest\": \"54945c836b3a91aed5a92eaca872c47e364dd3e846ab02aca637412488ead5b4\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.3-py2.py3-none-any.whl\",\n - \ \"filename\": \"vm_repair-1.0.3-py2.py3-none-any.whl\",\n + fix VMs.\",\n \"version\": \"1.0.5\"\n },\n + \ \"sha256Digest\": \"f2f7bc5698f89e0f6254464dc18d04d477dab4aab93296a46649018723855b26\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.6-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.6-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -51390,10 +56289,10 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"vm-repair\",\n \"summary\": \"Auto repair commands to - fix VMs.\",\n \"version\": \"1.0.3\"\n },\n - \ \"sha256Digest\": \"3ea7181d6e5337cc9c85176467bafc413a2c1111a21ec06dd3e406f9cac82a93\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.4-py2.py3-none-any.whl\",\n - \ \"filename\": \"vm_repair-1.0.4-py2.py3-none-any.whl\",\n + fix VMs.\",\n \"version\": \"1.0.6\"\n },\n + \ \"sha256Digest\": \"c3fe396c4c769095f68fe765505e40ff4671b192e1a6daee584749044a906ca7\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.7-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.7-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -51418,10 +56317,10 @@ interactions: \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"vm-repair\",\n \"summary\": \"Auto repair commands to - fix VMs.\",\n \"version\": \"1.0.4\"\n },\n - \ \"sha256Digest\": \"2adddc6d8cba9c6846a0c76f2612177a4d5b0813732f83534e4f8d0a48ddf9ab\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.5-py2.py3-none-any.whl\",\n - \ \"filename\": \"vm_repair-1.0.5-py2.py3-none-any.whl\",\n + fix VMs.\",\n \"version\": \"1.0.7\"\n },\n + \ \"sha256Digest\": \"989b15053fe19f1dbb37fd4a31720e2a1ca622ecadaaa4b5c568c44e44c20fa6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.8-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.8-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -51443,13 +56342,16 @@ interactions: \ },\n \"project_urls\": {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"vm-repair\",\n \"summary\": \"Auto repair commands to - fix VMs.\",\n \"version\": \"1.0.5\"\n },\n - \ \"sha256Digest\": \"f2f7bc5698f89e0f6254464dc18d04d477dab4aab93296a46649018723855b26\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.6-py2.py3-none-any.whl\",\n - \ \"filename\": \"vm_repair-1.0.6-py2.py3-none-any.whl\",\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"vm-repair\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"opencensus (~=0.11.4)\",\n \"opencensus~=0.11.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Auto repair commands to fix VMs.\",\n \"version\": + \"1.0.8\"\n },\n \"sha256Digest\": \"165935c55f7da622fa17d3b1898d337c87838a24e390fbc5bf5c56ef9c0b4bfb\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.9-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.9-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -51471,13 +56373,16 @@ interactions: \ },\n \"project_urls\": {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"vm-repair\",\n \"summary\": \"Auto repair commands to - fix VMs.\",\n \"version\": \"1.0.6\"\n },\n - \ \"sha256Digest\": \"c3fe396c4c769095f68fe765505e40ff4671b192e1a6daee584749044a906ca7\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.7-py2.py3-none-any.whl\",\n - \ \"filename\": \"vm_repair-1.0.7-py2.py3-none-any.whl\",\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"vm-repair\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"opencensus (~=0.11.4)\",\n \"opencensus~=0.11.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Auto repair commands to fix VMs.\",\n \"version\": + \"1.0.9\"\n },\n \"sha256Digest\": \"72eef7e7dcfe46473f4e8451464f27557e72a79632eddb6f73c319eb5cef5cbc\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.0.10-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.0.10-py2.py3-none-any.whl\",\n \ \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended @@ -51499,11 +56404,107 @@ interactions: \ },\n \"project_urls\": {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n \ }\n }\n },\n - \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": - \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": - \"vm-repair\",\n \"summary\": \"Auto repair commands to - fix VMs.\",\n \"version\": \"1.0.7\"\n },\n - \ \"sha256Digest\": \"989b15053fe19f1dbb37fd4a31720e2a1ca622ecadaaa4b5c568c44e44c20fa6\"\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"vm-repair\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"opencensus (~=0.11.4)\",\n \"opencensus~=0.11.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Auto repair commands to fix VMs.\",\n \"version\": + \"1.0.10\"\n },\n \"sha256Digest\": \"9ccd6c1ea95874c0928a161fa2d12ca25b3a7ae9bc5461faacd690debfdc0c89\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.1.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"vm-repair\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"opencensus (~=0.11.4)\",\n \"opencensus~=0.11.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Auto repair commands to fix VMs.\",\n \"version\": + \"1.1.0\"\n },\n \"sha256Digest\": \"c5d14b41d22049e8e7ddbc481c1dfeb08acbdc799fb86ab51541b3fe0b7d98e9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-1.1.1-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-1.1.1-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"vm-repair\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"opencensus (~=0.11.4)\",\n \"opencensus~=0.11.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Auto repair commands to fix VMs.\",\n \"version\": + \"1.1.1\"\n },\n \"sha256Digest\": \"b3444d8b20923c6ba284349a8819b6991ab71620f1e5c2d95185e4fc0a812db6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vm_repair-2.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vm_repair-2.0.0-py2.py3-none-any.whl\",\n + \ \"metadata\": {\n \"azext.isPreview\": + false,\n \"azext.minCliCoreVersion\": \"2.0.67\",\n \"classifiers\": + [\n \"Development Status :: 4 - Beta\",\n \"Intended + Audience :: Developers\",\n \"Intended Audience :: + System Administrators\",\n \"Programming Language :: + Python\",\n \"Programming Language :: Python :: 2\",\n + \ \"Programming Language :: Python :: 2.7\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.4\",\n \"Programming Language :: Python + :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"caiddev@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vm-repair\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"vm-repair\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"opencensus (~=0.11.4)\",\n \"opencensus~=0.11.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Auto repair commands to fix VMs.\",\n \"version\": + \"2.0.0\"\n },\n \"sha256Digest\": \"9816b44a02b219dc6b4edad2543a7bf19d325d4332c0bffda34a2c29e51b85d5\"\n \ }\n ],\n \"vmware\": [\n {\n \"downloadUrl\": \"https://github.com/virtustream/az-vmware-cli/releases/download/0.7.2/vmware-0.7.2-py2.py3-none-any.whl\",\n \ \"filename\": \"vmware-0.7.2-py2.py3-none-any.whl\",\n \"metadata\": @@ -51754,7 +56755,43 @@ interactions: \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n \ \"version\": \"6.0.1\"\n },\n \"sha256Digest\": - \"2e07a4ddf1b244cfe8b63a29b7f82c3ec94294f10bacfe8fd604841d290020b5\"\n }\n + \"2e07a4ddf1b244cfe8b63a29b7f82c3ec94294f10bacfe8fd604841d290020b5\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-7.0.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-7.0.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.54.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"7.0.0\"\n },\n \"sha256Digest\": + \"e0fadce4fc02996443a8e1673d19ebd24383c584ca89bd396ce963e85865ac0d\"\n },\n + \ {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/vmware-7.1.0-py2.py3-none-any.whl\",\n + \ \"filename\": \"vmware-7.1.0-py2.py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.54.0\",\n \"description_content_type\": \"text/markdown\",\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft\",\n \"role\": + \"author\"\n }\n ],\n + \ \"document_names\": {\n \"description\": + \"DESCRIPTION.rst\"\n },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/vmware\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"vmware\",\n \"summary\": \"Azure VMware Solution commands.\",\n + \ \"version\": \"7.1.0\"\n },\n \"sha256Digest\": + \"53dc8b1d803cd784e668c4d4d630dec20390406af46266df0860f548a5c21f9d\"\n }\n \ ],\n \"webapp\": [\n {\n \"downloadUrl\": \"https://github.com/Nking92/azure-cli-extensions/raw/whl-files/dist/webapp-0.2.24-py2.py3-none-any.whl\",\n \ \"filename\": \"webapp-0.2.24-py2.py3-none-any.whl\",\n \"metadata\": @@ -51892,19 +56929,105 @@ interactions: \ \"websockets (~=8.1)\"\n ]\n \ }\n ],\n \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub Extension\",\n \"version\": - \"0.2.0\"\n },\n \"sha256Digest\": \"f29d5b7217b8f03fc05dde2cab282cbebec9d211dc8cd7c1ee9baa71b23ff6d5\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-0.2.1-py3-none-any.whl\",\n - \ \"filename\": \"webpubsub-0.2.1-py3-none-any.whl\",\n \"metadata\": - {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": - \"2.22.0\",\n \"classifiers\": [\n \"Development + \"0.2.0\"\n },\n \"sha256Digest\": \"f29d5b7217b8f03fc05dde2cab282cbebec9d211dc8cd7c1ee9baa71b23ff6d5\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-0.2.1-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-0.2.1-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.22.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websockets (~=8.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Webpubsub Extension\",\n \"version\": + \"0.2.1\"\n },\n \"sha256Digest\": \"8eac173dde02b0703d0dd3ef193e796e83e85732c98302aa0f53418a128bddec\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.0.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.0.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.22.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websockets (~=8.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Webpubsub Extension\",\n \"version\": + \"1.0.0\"\n },\n \"sha256Digest\": \"5e98577476bc8aba299baa00e664ff10185546c8f766260b961ef1c428b66a34\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.1.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.1.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.22.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.6\",\n \"Programming Language :: Python + :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websockets (~=8.1)\"\n ]\n + \ }\n ],\n \"summary\": + \"Microsoft Azure Command-Line Tools Webpubsub Extension\",\n \"version\": + \"1.1.0\"\n },\n \"sha256Digest\": \"802e829313a4993702d114a94eb8b119a376085d92b0a7860fd2c308e73112f6\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.2.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.2.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.39.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \ \"email\": \"azpycli@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n @@ -51912,28 +57035,27 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/webpubsub\"\n \ }\n }\n },\n \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": [\n {\n \"requires\": [\n - \ \"websockets (~=8.1)\"\n ]\n + \ \"websockets (~=10.4)\"\n ]\n \ }\n ],\n \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub Extension\",\n \"version\": - \"0.2.1\"\n },\n \"sha256Digest\": \"8eac173dde02b0703d0dd3ef193e796e83e85732c98302aa0f53418a128bddec\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.0.0-py3-none-any.whl\",\n - \ \"filename\": \"webpubsub-1.0.0-py3-none-any.whl\",\n \"metadata\": + \"1.2.0\"\n },\n \"sha256Digest\": \"faf83397b2215c7686ae7b3e93a576c3fd0aa9c70173ab72be66d2089b84b280\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.3.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.3.0-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": - \"2.22.0\",\n \"classifiers\": [\n \"Development + \"2.39.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \ \"email\": \"azpycli@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n @@ -51941,28 +57063,27 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/webpubsub\"\n \ }\n }\n },\n \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": [\n {\n \"requires\": [\n - \ \"websockets (~=8.1)\"\n ]\n + \ \"websockets (~=10.4)\"\n ]\n \ }\n ],\n \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub Extension\",\n \"version\": - \"1.0.0\"\n },\n \"sha256Digest\": \"5e98577476bc8aba299baa00e664ff10185546c8f766260b961ef1c428b66a34\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.1.0-py3-none-any.whl\",\n - \ \"filename\": \"webpubsub-1.1.0-py3-none-any.whl\",\n \"metadata\": + \"1.3.0\"\n },\n \"sha256Digest\": \"ea713a11d4c2da55a1d60390bdb552f78bb80c1606214829eef099481eedb1da\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.4.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.4.0-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": - \"2.22.0\",\n \"classifiers\": [\n \"Development + \"2.39.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming Language :: Python :: 3\",\n \"Programming Language - :: Python :: 3.6\",\n \"Programming Language :: Python - :: 3.7\",\n \"Programming Language :: Python :: 3.8\",\n - \ \"License :: OSI Approved :: MIT License\"\n ],\n - \ \"extensions\": {\n \"python.details\": + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": {\n \"contacts\": [\n {\n \ \"email\": \"azpycli@microsoft.com\",\n \ \"name\": \"Microsoft Corporation\",\n @@ -51970,18 +57091,19 @@ interactions: \ ],\n \"document_names\": {\n \"description\": \"DESCRIPTION.rst\"\n \ },\n \"project_urls\": - {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/master/src/webpubsub\"\n + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/webpubsub\"\n \ }\n }\n },\n \ \"extras\": [],\n \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": [\n {\n \"requires\": [\n - \ \"websockets (~=8.1)\"\n ]\n - \ }\n ],\n \"summary\": - \"Microsoft Azure Command-Line Tools Webpubsub Extension\",\n \"version\": - \"1.1.0\"\n },\n \"sha256Digest\": \"802e829313a4993702d114a94eb8b119a376085d92b0a7860fd2c308e73112f6\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.2.0-py3-none-any.whl\",\n - \ \"filename\": \"webpubsub-1.2.0-py3-none-any.whl\",\n \"metadata\": + \ \"websockets (~=10.4)\",\n \"websockets~=10.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub + Extension\",\n \"version\": \"1.4.0\"\n },\n + \ \"sha256Digest\": \"50eab39bf43aa912ac947bd483092d6e1434cbba9ff3ce3ba05adf84a8a7d219\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.5.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.5.0-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": \"2.39.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n @@ -52004,14 +57126,15 @@ interactions: (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": [\n {\n \"requires\": [\n - \ \"websockets (~=10.4)\"\n ]\n - \ }\n ],\n \"summary\": - \"Microsoft Azure Command-Line Tools Webpubsub Extension\",\n \"version\": - \"1.2.0\"\n },\n \"sha256Digest\": \"faf83397b2215c7686ae7b3e93a576c3fd0aa9c70173ab72be66d2089b84b280\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.3.0-py3-none-any.whl\",\n - \ \"filename\": \"webpubsub-1.3.0-py3-none-any.whl\",\n \"metadata\": + \ \"websockets (~=10.4)\",\n \"websockets~=10.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub + Extension\",\n \"version\": \"1.5.0\"\n },\n + \ \"sha256Digest\": \"549fd4718c4663e4204be928dc3f86e5ef0f2003acf23fab03a4fdf5fdf4a3d8\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.5.1-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.5.1-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": - \"2.39.0\",\n \"classifiers\": [\n \"Development + \"2.56.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -52032,14 +57155,15 @@ interactions: (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": [\n {\n \"requires\": [\n - \ \"websockets (~=10.4)\"\n ]\n - \ }\n ],\n \"summary\": - \"Microsoft Azure Command-Line Tools Webpubsub Extension\",\n \"version\": - \"1.3.0\"\n },\n \"sha256Digest\": \"ea713a11d4c2da55a1d60390bdb552f78bb80c1606214829eef099481eedb1da\"\n - \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.4.0-py3-none-any.whl\",\n - \ \"filename\": \"webpubsub-1.4.0-py3-none-any.whl\",\n \"metadata\": + \ \"websockets (~=10.4)\",\n \"websockets~=10.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub + Extension\",\n \"version\": \"1.5.1\"\n },\n + \ \"sha256Digest\": \"32bbeb0da13bb4c197c993a260afdaffc78c18d5f2bc390d588c5142baa785e9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.6.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.6.0-py3-none-any.whl\",\n \"metadata\": {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": - \"2.39.0\",\n \"classifiers\": [\n \"Development + \"2.56.0\",\n \"classifiers\": [\n \"Development Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n \ \"Intended Audience :: System Administrators\",\n \ \"Programming Language :: Python\",\n \"Programming @@ -52063,8 +57187,37 @@ interactions: \ \"websockets (~=10.4)\",\n \"websockets~=10.4\"\n \ ]\n }\n ],\n \ \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub - Extension\",\n \"version\": \"1.4.0\"\n },\n - \ \"sha256Digest\": \"50eab39bf43aa912ac947bd483092d6e1434cbba9ff3ce3ba05adf84a8a7d219\"\n + Extension\",\n \"version\": \"1.6.0\"\n },\n + \ \"sha256Digest\": \"7c30049ded256664b8e5434230407331f6349def48e8aa57a759dc1cd9ab75e9\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.7.0-py3-none-any.whl\",\n + \ \"filename\": \"webpubsub-1.7.0-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": false,\n \"azext.minCliCoreVersion\": + \"2.56.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"License :: OSI Approved :: MIT License\"\n + \ ],\n \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/webpubsub\"\n + \ }\n }\n },\n + \ \"extras\": [],\n \"generator\": \"bdist_wheel + (0.30.0)\",\n \"license\": \"MIT\",\n \"metadata_version\": + \"2.0\",\n \"name\": \"webpubsub\",\n \"run_requires\": + [\n {\n \"requires\": [\n + \ \"websockets (~=10.4)\",\n \"websockets~=10.4\"\n + \ ]\n }\n ],\n + \ \"summary\": \"Microsoft Azure Command-Line Tools Webpubsub + Extension\",\n \"version\": \"1.7.0\"\n },\n + \ \"sha256Digest\": \"d4a1df1b81531516cbb8460303e30ab7e465ff10da9bb91f5c90e5c223610643\"\n \ }\n ],\n \"workloads\": [\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/workloads-0.1.0a1-py3-none-any.whl\",\n \ \"filename\": \"workloads-0.1.0a1-py3-none-any.whl\",\n \"metadata\": @@ -52144,20 +57297,46 @@ interactions: \"workloads\",\n \"summary\": \"Microsoft Azure Command-Line Tools Workloads Extension.\",\n \"version\": \"1.1.0b2\"\n \ },\n \"sha256Digest\": \"716ec3db6d1d637da3d0255e83406aed3acd26b83405bbcadc4d30e1110beea3\"\n + \ },\n {\n \"downloadUrl\": \"https://azcliprod.blob.core.windows.net/cli-extensions/workloads-1.1.0b3-py3-none-any.whl\",\n + \ \"filename\": \"workloads-1.1.0b3-py3-none-any.whl\",\n \"metadata\": + {\n \"azext.isPreview\": true,\n \"azext.minCliCoreVersion\": + \"2.57.0\",\n \"classifiers\": [\n \"Development + Status :: 4 - Beta\",\n \"Intended Audience :: Developers\",\n + \ \"Intended Audience :: System Administrators\",\n + \ \"Programming Language :: Python\",\n \"Programming + Language :: Python :: 3\",\n \"Programming Language + :: Python :: 3.7\",\n \"Programming Language :: Python + :: 3.8\",\n \"Programming Language :: Python :: 3.9\",\n + \ \"License :: OSI Approved :: MIT License\"\n ],\n + \ \"extensions\": {\n \"python.details\": + {\n \"contacts\": [\n {\n + \ \"email\": \"azpycli@microsoft.com\",\n + \ \"name\": \"Microsoft Corporation\",\n + \ \"role\": \"author\"\n }\n + \ ],\n \"document_names\": + {\n \"description\": \"DESCRIPTION.rst\"\n + \ },\n \"project_urls\": + {\n \"Home\": \"https://github.com/Azure/azure-cli-extensions/tree/main/src/workloads\"\n + \ }\n }\n },\n + \ \"generator\": \"bdist_wheel (0.30.0)\",\n \"license\": + \"MIT\",\n \"metadata_version\": \"2.0\",\n \"name\": + \"workloads\",\n \"summary\": \"Microsoft Azure Command-Line + Tools Workloads Extension.\",\n \"version\": \"1.1.0b3\"\n + \ },\n \"sha256Digest\": \"a7373b2d3766c43b3caeafc0eddbb492429750b62c78f767760b9b0b42363206\"\n \ }\n ]\n },\n \"formatVersion\": \"1\"\n}" headers: content-length: - - '4280977' + - '4730543' content-md5: - - nZN3Z6KaOqUpVasdCRx8jQ== + - ujCJSinjrJ+HmQZ85kl5MQ== content-type: - application/json date: - - Thu, 25 Jul 2024 11:02:26 GMT + - Mon, 04 Nov 2024 03:07:36 GMT etag: - - '0x8DCAC53706DCD0C' + - '0x8DCFA4EC6421D96' last-modified: - - Thu, 25 Jul 2024 02:42:34 GMT + - Fri, 01 Nov 2024 08:25:42 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-blob-type: @@ -52183,21 +57362,21 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_firewall_basic_sku_000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001","name":"cli_test_firewall_basic_sku_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_firewall_basic_sku","date":"2024-07-25T10:47:42Z","module":"azure-firewall","Created":"2024-07-25T10:47:45.1857988Z","CreationDate":"2024-07-25T10:47:45.1857917Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001","name":"cli_test_firewall_basic_sku_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_firewall_basic_sku","date":"2024-11-04T02:52:33Z","module":"azure-firewall","Creator":"v-ruih@microsoft.com","DateCreated":"2024-11-04T02:52:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '492' + - '475' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:02:29 GMT + - Mon, 04 Nov 2024 03:07:40 GMT expires: - '-1' pragma: @@ -52208,8 +57387,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 16F6427F820547829CB2A0592CC0F142 Ref B: MRS211050313019 Ref C: 2024-07-25T11:02:29Z' + - 'Ref A: FDE7EB794BAC4ED18054B2D591AEAD8F Ref B: MAA201060515027 Ref C: 2024-11-04T03:07:41Z' status: code: 200 message: OK @@ -52231,28 +57412,25 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualWans/vwan-000007?api-version=2022-07-01 response: body: - string: "{\r\n \"name\": \"vwan-000007\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualWans/vwan-000007\",\r\n - \ \"etag\": \"W/\\\"c4907c66-e450-4e0d-93bd-bdabfc2ae37c\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": - false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": - \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}" + string: '{"name":"vwan-000007","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualWans/vwan-000007","etag":"W/\"df4d7f5a-d46b-4ada-99a8-c144b1cfbe65\"","type":"Microsoft.Network/virtualWans","location":"westus","properties":{"provisioningState":"Updating","disableVpnEncryption":false,"allowBranchToBranchTraffic":true,"office365LocalBreakoutCategory":"None","type":"Standard"}}' headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2089fb44-f070-4118-8931-cf40f7374dfa?api-version=2022-07-01&t=638575021559663266&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=Jf0-YrT1Q5z8wRPpq0KTACjS3j-q0zgVAEscZb2C8mWdnKFpFf-qki9WkcZquUeem0eISAmJ8BuVi75Y0_UP65wa_VzidlfIfhRkjSgI7j1RNgVYu9LN54f6dAcr5paNVYdNdkdTW_Cxp2XeQUpULZT8ngLnT-9E8FEifjcOr0D_JhbrLDjsKOI9U5wKCPEAAfAV1kiMoBggcsaisqhA2s-x897NFpvbbpX4id3N2UxMU8nXIxAnBcdkbbGoNkXXZu6Pl_0YKszx-u9bn8Jcn_bbz8uMwJdHFkQm4j4gIZlcFakEfqQKAIcJtNZAu-Zx3xBF42IH1tAqFsZs37oJzg&h=_WQ3kle2DUVm2vzzWK0yujEXG51O_S1YcSNq2VaTPXE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0f25ea97-d8aa-4b1b-8c38-07b7481a4d4e?api-version=2022-07-01&t=638662864663881804&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=r95qhJxiy3GEiTI1WqevNi0J_eAyyuczyKWw4RcFObctLsMZOwqpz8grLUua6NneyovjaNn8clXcHrxxlzYHMM5YZ4XWJSRahvATlPEpv6uHEETl_6rZqeIxuIjSaEw5cjDZlSpQxiC27KNBl6f8sZnIVtwnnEF9LaGt5iB2uuToEGmghR6eKTV6Tf_YhEza0_oYrgSRMJh7BKd69J46LWLllk1sP1cENj6wXEN-KLmK4nRZAu8QuxyT2TRKZlnG4rTaAdktdmEjET8j0dUBTdgdWS28OuqIEIsQx0qEoIgjSbFOg16C-dbPBlLfBic3nj6sP73lJCAAu3-PIFp1pw&h=0MI3_EckZHkFrqVwtwiLxIwGv5Jrgdp0t5FUf8sxNG4 cache-control: - no-cache content-length: - - '532' + - '461' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:02:35 GMT + - Mon, 04 Nov 2024 03:07:45 GMT expires: - '-1' pragma: @@ -52263,10 +57441,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - d77989bd-9eee-415d-b07b-397a3ed42777 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '1145' + - '199' x-msedge-ref: - - 'Ref A: 25501FB2BEDD4B528E0A14CA6B3A8E3E Ref B: MRS211050618025 Ref C: 2024-07-25T11:02:30Z' + - 'Ref A: 7AA71201237649CCB7BD1727ADC1C105 Ref B: MAA201060515037 Ref C: 2024-11-04T03:07:42Z' status: code: 201 message: Created @@ -52284,21 +57466,21 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2089fb44-f070-4118-8931-cf40f7374dfa?api-version=2022-07-01&t=638575021559663266&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=Jf0-YrT1Q5z8wRPpq0KTACjS3j-q0zgVAEscZb2C8mWdnKFpFf-qki9WkcZquUeem0eISAmJ8BuVi75Y0_UP65wa_VzidlfIfhRkjSgI7j1RNgVYu9LN54f6dAcr5paNVYdNdkdTW_Cxp2XeQUpULZT8ngLnT-9E8FEifjcOr0D_JhbrLDjsKOI9U5wKCPEAAfAV1kiMoBggcsaisqhA2s-x897NFpvbbpX4id3N2UxMU8nXIxAnBcdkbbGoNkXXZu6Pl_0YKszx-u9bn8Jcn_bbz8uMwJdHFkQm4j4gIZlcFakEfqQKAIcJtNZAu-Zx3xBF42IH1tAqFsZs37oJzg&h=_WQ3kle2DUVm2vzzWK0yujEXG51O_S1YcSNq2VaTPXE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0f25ea97-d8aa-4b1b-8c38-07b7481a4d4e?api-version=2022-07-01&t=638662864663881804&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=r95qhJxiy3GEiTI1WqevNi0J_eAyyuczyKWw4RcFObctLsMZOwqpz8grLUua6NneyovjaNn8clXcHrxxlzYHMM5YZ4XWJSRahvATlPEpv6uHEETl_6rZqeIxuIjSaEw5cjDZlSpQxiC27KNBl6f8sZnIVtwnnEF9LaGt5iB2uuToEGmghR6eKTV6Tf_YhEza0_oYrgSRMJh7BKd69J46LWLllk1sP1cENj6wXEN-KLmK4nRZAu8QuxyT2TRKZlnG4rTaAdktdmEjET8j0dUBTdgdWS28OuqIEIsQx0qEoIgjSbFOg16C-dbPBlLfBic3nj6sP73lJCAAu3-PIFp1pw&h=0MI3_EckZHkFrqVwtwiLxIwGv5Jrgdp0t5FUf8sxNG4 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:02:35 GMT + - Mon, 04 Nov 2024 03:07:46 GMT expires: - '-1' pragma: @@ -52310,9 +57492,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c8891fc8-fb92-4c04-a487-67af99333ff9 + - 6cb0f6ac-7e35-4345-a21d-4e1407e9b0a4 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 72DDEB273B3F49E6B2ECB7C37F4C0E78 Ref B: MRS211050618025 Ref C: 2024-07-25T11:02:36Z' + - 'Ref A: B9B24298C7734D2FA76C5E5B8F5E5B81 Ref B: MAA201060515037 Ref C: 2024-11-04T03:07:46Z' status: code: 200 message: OK @@ -52330,21 +57514,21 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2089fb44-f070-4118-8931-cf40f7374dfa?api-version=2022-07-01&t=638575021559663266&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=Jf0-YrT1Q5z8wRPpq0KTACjS3j-q0zgVAEscZb2C8mWdnKFpFf-qki9WkcZquUeem0eISAmJ8BuVi75Y0_UP65wa_VzidlfIfhRkjSgI7j1RNgVYu9LN54f6dAcr5paNVYdNdkdTW_Cxp2XeQUpULZT8ngLnT-9E8FEifjcOr0D_JhbrLDjsKOI9U5wKCPEAAfAV1kiMoBggcsaisqhA2s-x897NFpvbbpX4id3N2UxMU8nXIxAnBcdkbbGoNkXXZu6Pl_0YKszx-u9bn8Jcn_bbz8uMwJdHFkQm4j4gIZlcFakEfqQKAIcJtNZAu-Zx3xBF42IH1tAqFsZs37oJzg&h=_WQ3kle2DUVm2vzzWK0yujEXG51O_S1YcSNq2VaTPXE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0f25ea97-d8aa-4b1b-8c38-07b7481a4d4e?api-version=2022-07-01&t=638662864663881804&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=r95qhJxiy3GEiTI1WqevNi0J_eAyyuczyKWw4RcFObctLsMZOwqpz8grLUua6NneyovjaNn8clXcHrxxlzYHMM5YZ4XWJSRahvATlPEpv6uHEETl_6rZqeIxuIjSaEw5cjDZlSpQxiC27KNBl6f8sZnIVtwnnEF9LaGt5iB2uuToEGmghR6eKTV6Tf_YhEza0_oYrgSRMJh7BKd69J46LWLllk1sP1cENj6wXEN-KLmK4nRZAu8QuxyT2TRKZlnG4rTaAdktdmEjET8j0dUBTdgdWS28OuqIEIsQx0qEoIgjSbFOg16C-dbPBlLfBic3nj6sP73lJCAAu3-PIFp1pw&h=0MI3_EckZHkFrqVwtwiLxIwGv5Jrgdp0t5FUf8sxNG4 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:02:46 GMT + - Mon, 04 Nov 2024 03:07:56 GMT expires: - '-1' pragma: @@ -52356,9 +57540,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6327f57f-7bf3-4390-b1e9-1bf71fb64af6 + - 2455f612-b03f-429b-9a93-dfde43d6a0c0 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: B9A517B6943148BD99C278768D0BBCF2 Ref B: MRS211050618025 Ref C: 2024-07-25T11:02:46Z' + - 'Ref A: 5319255EB4F846A2B8BAB2B5A5DF4A13 Ref B: MAA201060515037 Ref C: 2024-11-04T03:07:57Z' status: code: 200 message: OK @@ -52376,28 +57562,23 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualWans/vwan-000007?api-version=2022-07-01 response: body: - string: "{\r\n \"name\": \"vwan-000007\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualWans/vwan-000007\",\r\n - \ \"etag\": \"W/\\\"5ded260e-06ab-4272-9fac-6e8f31699f93\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": - false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": - \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}" + string: '{"name":"vwan-000007","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualWans/vwan-000007","etag":"W/\"f8e329bc-7894-4508-92ce-1f13b69447f9\"","type":"Microsoft.Network/virtualWans","location":"westus","properties":{"provisioningState":"Succeeded","disableVpnEncryption":false,"allowBranchToBranchTraffic":true,"office365LocalBreakoutCategory":"None","type":"Standard"}}' headers: cache-control: - no-cache content-length: - - '533' + - '462' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:02:46 GMT + - Mon, 04 Nov 2024 03:07:57 GMT etag: - - W/"5ded260e-06ab-4272-9fac-6e8f31699f93" + - W/"f8e329bc-7894-4508-92ce-1f13b69447f9" expires: - '-1' pragma: @@ -52408,8 +57589,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 45f0238b-6415-48a1-9b9f-4a49e76daf39 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: C0C5F32ECFFB4D189E2623F23118A2B2 Ref B: MRS211050618025 Ref C: 2024-07-25T11:02:46Z' + - 'Ref A: EC130D71855448C5B1F1E4355A8D19CA Ref B: MAA201060515037 Ref C: 2024-11-04T03:07:57Z' status: code: 200 message: OK @@ -52432,35 +57617,25 @@ interactions: ParameterSetName: - -n -g --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualHubs/vhub-000008?api-version=2022-05-01 response: body: - string: "{\r\n \"name\": \"vhub-000008\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualHubs/vhub-000008\",\r\n - \ \"etag\": \"W/\\\"8a30a885-68b6-4c26-902f-8eb12aafcb85\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": - [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": - 65515,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": - []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": - 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualWans/vwan-000007\"\r\n - \ },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n - \ \"routingState\": \"None\",\r\n \"allowBranchToBranchTraffic\": false,\r\n - \ \"hubRoutingPreference\": \"ExpressRoute\"\r\n }\r\n}" + string: '{"name":"vhub-000008","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualHubs/vhub-000008","etag":"W/\"9d73e8e7-f59c-4375-8e30-56bcdf261cb5\"","type":"Microsoft.Network/virtualHubs","location":"westus","properties":{"provisioningState":"Updating","virtualHubRouteTableV2s":[],"addressPrefix":"10.0.0.0/24","virtualRouterAsn":65515,"virtualRouterIps":[],"routeTable":{"routes":[]},"virtualRouterAutoScaleConfiguration":{"minCapacity":2},"virtualWan":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualWans/vwan-000007"},"networkVirtualAppliances":[],"sku":"Standard","routingState":"None","allowBranchToBranchTraffic":false,"hubRoutingPreference":"ExpressRoute"}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/73f46cf7-0787-4812-8077-0764cc40fb69?api-version=2022-05-01&t=638575021736586970&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=QvNBtA6jYiqaCDcKreRxpGa3CgXrv9FGU8vC6uhLJ0UK9PdAKQcLgx26Ngi0gIQwzhUTt_joT44eJRJx5iMcvvepLWf2uTnL9jLMRZcVF-VE1tvQzQHsKB0Xj7MKHQMGzoI7HcE8p0K-6c8HflD0CDxpQMMPOhxjk36OIGkLvZi4f_vGORS8uNAwABWdsmJurkzm1OLRWvZSqCU58EkfIu0-PpsRIycQQgkHukG1N8ALi-Ux_oESNrx0z4vZP3MXpWSkhXzYnxvcKLigmNXrFo6vB3SkJ5bOLflTGd8pK-kKoiYx6w6uxA2bJKX4tj1mIHyjuHTu4qXrBcQdIEbA3w&h=vz6QxF4MGXUJRXKLL9d62tS55gPipamtEVaM8hwXBvU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f666e1b8-0bec-4764-8d5b-5f1b1e883e3c?api-version=2022-05-01&t=638662864828956148&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=ppjhaIjAHUBtUaFQ2TdFVOapdtrI8aE4LUY31qpWPtFJHi2EvftDCMj4MwyQGPGxkoRPYxr76l4uZbmfR4rwb4Ul2AuVqU3TqcCAhsPBBw2w8tS1yn_Itsmju4Kwc4KFO6UvpOiH5djWP4kweNZNlRY2agBHHZhf1PkbWcbf6vVawHzB_vajA3dGCd_HTgE0TgQspQGr0inl-IPAgyhCZ8G0WDjalkVD1mtAAYdMA7bukePJxTxfHqG0fPEnhHBYmL7inPspqMMfwFcQPZ8XFg--iggwbJpatf68JbuW2lCSkKtkoAGklNdXaKqIpauKLiXDvvsW7lVWVXhmcmQwag&h=ToqODSX_KTwce7dvByOrMhZQaq7ZNn0JvkuGPAkooaM cache-control: - no-cache content-length: - - '1019' + - '847' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:02:52 GMT + - Mon, 04 Nov 2024 03:08:02 GMT expires: - '-1' pragma: @@ -52472,11 +57647,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 83f7128f-4942-4c44-b9c5-47e1fa553f73 + - 5acab531-9b71-4ee6-b7e5-3050193ae1ba + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '199' x-msedge-ref: - - 'Ref A: 1A434FD80FD04C078BFFD6F9FD564DE3 Ref B: MRS211050618045 Ref C: 2024-07-25T11:02:48Z' + - 'Ref A: 41B6866017034D3BB927CADAAD52162E Ref B: MAA201060515009 Ref C: 2024-11-04T03:07:59Z' status: code: 201 message: Created @@ -52494,21 +57671,21 @@ interactions: ParameterSetName: - -n -g --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/73f46cf7-0787-4812-8077-0764cc40fb69?api-version=2022-05-01&t=638575021736586970&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=QvNBtA6jYiqaCDcKreRxpGa3CgXrv9FGU8vC6uhLJ0UK9PdAKQcLgx26Ngi0gIQwzhUTt_joT44eJRJx5iMcvvepLWf2uTnL9jLMRZcVF-VE1tvQzQHsKB0Xj7MKHQMGzoI7HcE8p0K-6c8HflD0CDxpQMMPOhxjk36OIGkLvZi4f_vGORS8uNAwABWdsmJurkzm1OLRWvZSqCU58EkfIu0-PpsRIycQQgkHukG1N8ALi-Ux_oESNrx0z4vZP3MXpWSkhXzYnxvcKLigmNXrFo6vB3SkJ5bOLflTGd8pK-kKoiYx6w6uxA2bJKX4tj1mIHyjuHTu4qXrBcQdIEbA3w&h=vz6QxF4MGXUJRXKLL9d62tS55gPipamtEVaM8hwXBvU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f666e1b8-0bec-4764-8d5b-5f1b1e883e3c?api-version=2022-05-01&t=638662864828956148&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=ppjhaIjAHUBtUaFQ2TdFVOapdtrI8aE4LUY31qpWPtFJHi2EvftDCMj4MwyQGPGxkoRPYxr76l4uZbmfR4rwb4Ul2AuVqU3TqcCAhsPBBw2w8tS1yn_Itsmju4Kwc4KFO6UvpOiH5djWP4kweNZNlRY2agBHHZhf1PkbWcbf6vVawHzB_vajA3dGCd_HTgE0TgQspQGr0inl-IPAgyhCZ8G0WDjalkVD1mtAAYdMA7bukePJxTxfHqG0fPEnhHBYmL7inPspqMMfwFcQPZ8XFg--iggwbJpatf68JbuW2lCSkKtkoAGklNdXaKqIpauKLiXDvvsW7lVWVXhmcmQwag&h=ToqODSX_KTwce7dvByOrMhZQaq7ZNn0JvkuGPAkooaM response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:02:53 GMT + - Mon, 04 Nov 2024 03:08:02 GMT expires: - '-1' pragma: @@ -52520,9 +57697,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 300bb91e-f337-4f7b-8805-6d5f7c580978 + - f73fcf89-3870-48a7-8a56-735f8f017cf2 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 265D3493A95A44D59C8EE21A1FAF26C0 Ref B: MRS211050618045 Ref C: 2024-07-25T11:02:53Z' + - 'Ref A: 185156B13B374F44B154C53970DC9F8F Ref B: MAA201060515009 Ref C: 2024-11-04T03:08:03Z' status: code: 200 message: OK @@ -52540,21 +57719,21 @@ interactions: ParameterSetName: - -n -g --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/73f46cf7-0787-4812-8077-0764cc40fb69?api-version=2022-05-01&t=638575021736586970&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=QvNBtA6jYiqaCDcKreRxpGa3CgXrv9FGU8vC6uhLJ0UK9PdAKQcLgx26Ngi0gIQwzhUTt_joT44eJRJx5iMcvvepLWf2uTnL9jLMRZcVF-VE1tvQzQHsKB0Xj7MKHQMGzoI7HcE8p0K-6c8HflD0CDxpQMMPOhxjk36OIGkLvZi4f_vGORS8uNAwABWdsmJurkzm1OLRWvZSqCU58EkfIu0-PpsRIycQQgkHukG1N8ALi-Ux_oESNrx0z4vZP3MXpWSkhXzYnxvcKLigmNXrFo6vB3SkJ5bOLflTGd8pK-kKoiYx6w6uxA2bJKX4tj1mIHyjuHTu4qXrBcQdIEbA3w&h=vz6QxF4MGXUJRXKLL9d62tS55gPipamtEVaM8hwXBvU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f666e1b8-0bec-4764-8d5b-5f1b1e883e3c?api-version=2022-05-01&t=638662864828956148&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=ppjhaIjAHUBtUaFQ2TdFVOapdtrI8aE4LUY31qpWPtFJHi2EvftDCMj4MwyQGPGxkoRPYxr76l4uZbmfR4rwb4Ul2AuVqU3TqcCAhsPBBw2w8tS1yn_Itsmju4Kwc4KFO6UvpOiH5djWP4kweNZNlRY2agBHHZhf1PkbWcbf6vVawHzB_vajA3dGCd_HTgE0TgQspQGr0inl-IPAgyhCZ8G0WDjalkVD1mtAAYdMA7bukePJxTxfHqG0fPEnhHBYmL7inPspqMMfwFcQPZ8XFg--iggwbJpatf68JbuW2lCSkKtkoAGklNdXaKqIpauKLiXDvvsW7lVWVXhmcmQwag&h=ToqODSX_KTwce7dvByOrMhZQaq7ZNn0JvkuGPAkooaM response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:03:03 GMT + - Mon, 04 Nov 2024 03:08:13 GMT expires: - '-1' pragma: @@ -52566,9 +57745,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6f332b14-624c-4424-bc05-3e6ab60ab83b + - 9996c23c-5c69-423c-8266-15363927d75b + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: E2C006FA09C743BE9676960D781FCF2F Ref B: MRS211050618045 Ref C: 2024-07-25T11:03:04Z' + - 'Ref A: 1422FB8EA61945828C6E8D53DB441666 Ref B: MAA201060515009 Ref C: 2024-11-04T03:08:13Z' status: code: 200 message: OK @@ -52586,21 +57767,21 @@ interactions: ParameterSetName: - -n -g --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/73f46cf7-0787-4812-8077-0764cc40fb69?api-version=2022-05-01&t=638575021736586970&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=QvNBtA6jYiqaCDcKreRxpGa3CgXrv9FGU8vC6uhLJ0UK9PdAKQcLgx26Ngi0gIQwzhUTt_joT44eJRJx5iMcvvepLWf2uTnL9jLMRZcVF-VE1tvQzQHsKB0Xj7MKHQMGzoI7HcE8p0K-6c8HflD0CDxpQMMPOhxjk36OIGkLvZi4f_vGORS8uNAwABWdsmJurkzm1OLRWvZSqCU58EkfIu0-PpsRIycQQgkHukG1N8ALi-Ux_oESNrx0z4vZP3MXpWSkhXzYnxvcKLigmNXrFo6vB3SkJ5bOLflTGd8pK-kKoiYx6w6uxA2bJKX4tj1mIHyjuHTu4qXrBcQdIEbA3w&h=vz6QxF4MGXUJRXKLL9d62tS55gPipamtEVaM8hwXBvU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f666e1b8-0bec-4764-8d5b-5f1b1e883e3c?api-version=2022-05-01&t=638662864828956148&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=ppjhaIjAHUBtUaFQ2TdFVOapdtrI8aE4LUY31qpWPtFJHi2EvftDCMj4MwyQGPGxkoRPYxr76l4uZbmfR4rwb4Ul2AuVqU3TqcCAhsPBBw2w8tS1yn_Itsmju4Kwc4KFO6UvpOiH5djWP4kweNZNlRY2agBHHZhf1PkbWcbf6vVawHzB_vajA3dGCd_HTgE0TgQspQGr0inl-IPAgyhCZ8G0WDjalkVD1mtAAYdMA7bukePJxTxfHqG0fPEnhHBYmL7inPspqMMfwFcQPZ8XFg--iggwbJpatf68JbuW2lCSkKtkoAGklNdXaKqIpauKLiXDvvsW7lVWVXhmcmQwag&h=ToqODSX_KTwce7dvByOrMhZQaq7ZNn0JvkuGPAkooaM response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:03:24 GMT + - Mon, 04 Nov 2024 03:08:34 GMT expires: - '-1' pragma: @@ -52612,9 +57793,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 60c89861-cfb7-4847-b0aa-0e577a1816a3 + - a1fb1204-f5d6-47b4-9839-bdb0d4f8a3eb + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 65D4DAA96E4B46FA9F0E2E26575C90C9 Ref B: MRS211050618045 Ref C: 2024-07-25T11:03:24Z' + - 'Ref A: 9BDB3953A96A46A891E89F06124F0728 Ref B: MAA201060515009 Ref C: 2024-11-04T03:08:34Z' status: code: 200 message: OK @@ -52632,21 +57815,21 @@ interactions: ParameterSetName: - -n -g --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/73f46cf7-0787-4812-8077-0764cc40fb69?api-version=2022-05-01&t=638575021736586970&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=QvNBtA6jYiqaCDcKreRxpGa3CgXrv9FGU8vC6uhLJ0UK9PdAKQcLgx26Ngi0gIQwzhUTt_joT44eJRJx5iMcvvepLWf2uTnL9jLMRZcVF-VE1tvQzQHsKB0Xj7MKHQMGzoI7HcE8p0K-6c8HflD0CDxpQMMPOhxjk36OIGkLvZi4f_vGORS8uNAwABWdsmJurkzm1OLRWvZSqCU58EkfIu0-PpsRIycQQgkHukG1N8ALi-Ux_oESNrx0z4vZP3MXpWSkhXzYnxvcKLigmNXrFo6vB3SkJ5bOLflTGd8pK-kKoiYx6w6uxA2bJKX4tj1mIHyjuHTu4qXrBcQdIEbA3w&h=vz6QxF4MGXUJRXKLL9d62tS55gPipamtEVaM8hwXBvU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f666e1b8-0bec-4764-8d5b-5f1b1e883e3c?api-version=2022-05-01&t=638662864828956148&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=ppjhaIjAHUBtUaFQ2TdFVOapdtrI8aE4LUY31qpWPtFJHi2EvftDCMj4MwyQGPGxkoRPYxr76l4uZbmfR4rwb4Ul2AuVqU3TqcCAhsPBBw2w8tS1yn_Itsmju4Kwc4KFO6UvpOiH5djWP4kweNZNlRY2agBHHZhf1PkbWcbf6vVawHzB_vajA3dGCd_HTgE0TgQspQGr0inl-IPAgyhCZ8G0WDjalkVD1mtAAYdMA7bukePJxTxfHqG0fPEnhHBYmL7inPspqMMfwFcQPZ8XFg--iggwbJpatf68JbuW2lCSkKtkoAGklNdXaKqIpauKLiXDvvsW7lVWVXhmcmQwag&h=ToqODSX_KTwce7dvByOrMhZQaq7ZNn0JvkuGPAkooaM response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:03:45 GMT + - Mon, 04 Nov 2024 03:08:55 GMT expires: - '-1' pragma: @@ -52658,9 +57841,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c58efc40-797f-495e-967b-3b567721ce28 + - b6fe2db1-72b2-41e1-abe7-f3b23c64eeed + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 39C373B7E0734B6484DE9117BA217B9A Ref B: MRS211050618045 Ref C: 2024-07-25T11:03:45Z' + - 'Ref A: 89275B81CCF84DDC8058AFD581424F2E Ref B: MAA201060515009 Ref C: 2024-11-04T03:08:55Z' status: code: 200 message: OK @@ -52678,21 +57863,21 @@ interactions: ParameterSetName: - -n -g --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/73f46cf7-0787-4812-8077-0764cc40fb69?api-version=2022-05-01&t=638575021736586970&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=QvNBtA6jYiqaCDcKreRxpGa3CgXrv9FGU8vC6uhLJ0UK9PdAKQcLgx26Ngi0gIQwzhUTt_joT44eJRJx5iMcvvepLWf2uTnL9jLMRZcVF-VE1tvQzQHsKB0Xj7MKHQMGzoI7HcE8p0K-6c8HflD0CDxpQMMPOhxjk36OIGkLvZi4f_vGORS8uNAwABWdsmJurkzm1OLRWvZSqCU58EkfIu0-PpsRIycQQgkHukG1N8ALi-Ux_oESNrx0z4vZP3MXpWSkhXzYnxvcKLigmNXrFo6vB3SkJ5bOLflTGd8pK-kKoiYx6w6uxA2bJKX4tj1mIHyjuHTu4qXrBcQdIEbA3w&h=vz6QxF4MGXUJRXKLL9d62tS55gPipamtEVaM8hwXBvU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f666e1b8-0bec-4764-8d5b-5f1b1e883e3c?api-version=2022-05-01&t=638662864828956148&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=ppjhaIjAHUBtUaFQ2TdFVOapdtrI8aE4LUY31qpWPtFJHi2EvftDCMj4MwyQGPGxkoRPYxr76l4uZbmfR4rwb4Ul2AuVqU3TqcCAhsPBBw2w8tS1yn_Itsmju4Kwc4KFO6UvpOiH5djWP4kweNZNlRY2agBHHZhf1PkbWcbf6vVawHzB_vajA3dGCd_HTgE0TgQspQGr0inl-IPAgyhCZ8G0WDjalkVD1mtAAYdMA7bukePJxTxfHqG0fPEnhHBYmL7inPspqMMfwFcQPZ8XFg--iggwbJpatf68JbuW2lCSkKtkoAGklNdXaKqIpauKLiXDvvsW7lVWVXhmcmQwag&h=ToqODSX_KTwce7dvByOrMhZQaq7ZNn0JvkuGPAkooaM response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:04:26 GMT + - Mon, 04 Nov 2024 03:09:35 GMT expires: - '-1' pragma: @@ -52704,9 +57889,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b07b9dd3-93d7-4539-b8d2-3c8aeb9e50dc + - 3a3ba790-c413-4a06-ac9c-f9d4b3c96868 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 7E66241908DF4A2EA679C5A037C4DCCA Ref B: MRS211050618045 Ref C: 2024-07-25T11:04:25Z' + - 'Ref A: AD32016C4AE24826B363F639892CF214 Ref B: MAA201060515009 Ref C: 2024-11-04T03:09:35Z' status: code: 200 message: OK @@ -52724,21 +57911,21 @@ interactions: ParameterSetName: - -n -g --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/73f46cf7-0787-4812-8077-0764cc40fb69?api-version=2022-05-01&t=638575021736586970&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=QvNBtA6jYiqaCDcKreRxpGa3CgXrv9FGU8vC6uhLJ0UK9PdAKQcLgx26Ngi0gIQwzhUTt_joT44eJRJx5iMcvvepLWf2uTnL9jLMRZcVF-VE1tvQzQHsKB0Xj7MKHQMGzoI7HcE8p0K-6c8HflD0CDxpQMMPOhxjk36OIGkLvZi4f_vGORS8uNAwABWdsmJurkzm1OLRWvZSqCU58EkfIu0-PpsRIycQQgkHukG1N8ALi-Ux_oESNrx0z4vZP3MXpWSkhXzYnxvcKLigmNXrFo6vB3SkJ5bOLflTGd8pK-kKoiYx6w6uxA2bJKX4tj1mIHyjuHTu4qXrBcQdIEbA3w&h=vz6QxF4MGXUJRXKLL9d62tS55gPipamtEVaM8hwXBvU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f666e1b8-0bec-4764-8d5b-5f1b1e883e3c?api-version=2022-05-01&t=638662864828956148&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=ppjhaIjAHUBtUaFQ2TdFVOapdtrI8aE4LUY31qpWPtFJHi2EvftDCMj4MwyQGPGxkoRPYxr76l4uZbmfR4rwb4Ul2AuVqU3TqcCAhsPBBw2w8tS1yn_Itsmju4Kwc4KFO6UvpOiH5djWP4kweNZNlRY2agBHHZhf1PkbWcbf6vVawHzB_vajA3dGCd_HTgE0TgQspQGr0inl-IPAgyhCZ8G0WDjalkVD1mtAAYdMA7bukePJxTxfHqG0fPEnhHBYmL7inPspqMMfwFcQPZ8XFg--iggwbJpatf68JbuW2lCSkKtkoAGklNdXaKqIpauKLiXDvvsW7lVWVXhmcmQwag&h=ToqODSX_KTwce7dvByOrMhZQaq7ZNn0JvkuGPAkooaM response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:05:07 GMT + - Mon, 04 Nov 2024 03:10:16 GMT expires: - '-1' pragma: @@ -52750,9 +57937,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - aadae6a2-4143-4380-a51b-bac59b495428 + - 8ffe3166-53bd-4e01-b29b-0dbfbcc85676 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 9D4356850EC04C82A071A56E3D220361 Ref B: MRS211050618045 Ref C: 2024-07-25T11:05:06Z' + - 'Ref A: A897EE1D66554C66A57125275B10FE22 Ref B: MAA201060515009 Ref C: 2024-11-04T03:10:16Z' status: code: 200 message: OK @@ -52770,21 +57959,21 @@ interactions: ParameterSetName: - -n -g --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/73f46cf7-0787-4812-8077-0764cc40fb69?api-version=2022-05-01&t=638575021736586970&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=QvNBtA6jYiqaCDcKreRxpGa3CgXrv9FGU8vC6uhLJ0UK9PdAKQcLgx26Ngi0gIQwzhUTt_joT44eJRJx5iMcvvepLWf2uTnL9jLMRZcVF-VE1tvQzQHsKB0Xj7MKHQMGzoI7HcE8p0K-6c8HflD0CDxpQMMPOhxjk36OIGkLvZi4f_vGORS8uNAwABWdsmJurkzm1OLRWvZSqCU58EkfIu0-PpsRIycQQgkHukG1N8ALi-Ux_oESNrx0z4vZP3MXpWSkhXzYnxvcKLigmNXrFo6vB3SkJ5bOLflTGd8pK-kKoiYx6w6uxA2bJKX4tj1mIHyjuHTu4qXrBcQdIEbA3w&h=vz6QxF4MGXUJRXKLL9d62tS55gPipamtEVaM8hwXBvU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f666e1b8-0bec-4764-8d5b-5f1b1e883e3c?api-version=2022-05-01&t=638662864828956148&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=ppjhaIjAHUBtUaFQ2TdFVOapdtrI8aE4LUY31qpWPtFJHi2EvftDCMj4MwyQGPGxkoRPYxr76l4uZbmfR4rwb4Ul2AuVqU3TqcCAhsPBBw2w8tS1yn_Itsmju4Kwc4KFO6UvpOiH5djWP4kweNZNlRY2agBHHZhf1PkbWcbf6vVawHzB_vajA3dGCd_HTgE0TgQspQGr0inl-IPAgyhCZ8G0WDjalkVD1mtAAYdMA7bukePJxTxfHqG0fPEnhHBYmL7inPspqMMfwFcQPZ8XFg--iggwbJpatf68JbuW2lCSkKtkoAGklNdXaKqIpauKLiXDvvsW7lVWVXhmcmQwag&h=ToqODSX_KTwce7dvByOrMhZQaq7ZNn0JvkuGPAkooaM response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:06:27 GMT + - Mon, 04 Nov 2024 03:11:37 GMT expires: - '-1' pragma: @@ -52796,9 +57985,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5a5f423f-8a31-4e4c-a097-f2527e44a9a6 + - 778b0916-2a45-4d69-b688-b2728872aef1 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 8880528C804A42E0BD374A979992AD53 Ref B: MRS211050315023 Ref C: 2024-07-25T11:06:27Z' + - 'Ref A: 22ECC7D13B6B4F048C907E8C81FA4D17 Ref B: MAA201060516021 Ref C: 2024-11-04T03:11:37Z' status: code: 200 message: OK @@ -52816,21 +58007,21 @@ interactions: ParameterSetName: - -n -g --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/73f46cf7-0787-4812-8077-0764cc40fb69?api-version=2022-05-01&t=638575021736586970&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=QvNBtA6jYiqaCDcKreRxpGa3CgXrv9FGU8vC6uhLJ0UK9PdAKQcLgx26Ngi0gIQwzhUTt_joT44eJRJx5iMcvvepLWf2uTnL9jLMRZcVF-VE1tvQzQHsKB0Xj7MKHQMGzoI7HcE8p0K-6c8HflD0CDxpQMMPOhxjk36OIGkLvZi4f_vGORS8uNAwABWdsmJurkzm1OLRWvZSqCU58EkfIu0-PpsRIycQQgkHukG1N8ALi-Ux_oESNrx0z4vZP3MXpWSkhXzYnxvcKLigmNXrFo6vB3SkJ5bOLflTGd8pK-kKoiYx6w6uxA2bJKX4tj1mIHyjuHTu4qXrBcQdIEbA3w&h=vz6QxF4MGXUJRXKLL9d62tS55gPipamtEVaM8hwXBvU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f666e1b8-0bec-4764-8d5b-5f1b1e883e3c?api-version=2022-05-01&t=638662864828956148&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=ppjhaIjAHUBtUaFQ2TdFVOapdtrI8aE4LUY31qpWPtFJHi2EvftDCMj4MwyQGPGxkoRPYxr76l4uZbmfR4rwb4Ul2AuVqU3TqcCAhsPBBw2w8tS1yn_Itsmju4Kwc4KFO6UvpOiH5djWP4kweNZNlRY2agBHHZhf1PkbWcbf6vVawHzB_vajA3dGCd_HTgE0TgQspQGr0inl-IPAgyhCZ8G0WDjalkVD1mtAAYdMA7bukePJxTxfHqG0fPEnhHBYmL7inPspqMMfwFcQPZ8XFg--iggwbJpatf68JbuW2lCSkKtkoAGklNdXaKqIpauKLiXDvvsW7lVWVXhmcmQwag&h=ToqODSX_KTwce7dvByOrMhZQaq7ZNn0JvkuGPAkooaM response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:09:08 GMT + - Mon, 04 Nov 2024 03:14:19 GMT expires: - '-1' pragma: @@ -52842,9 +58033,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 61921dfe-a372-470d-ba4c-1943d19ca753 + - 3d846eb5-0a6d-422a-85bf-8411d04253d5 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 3C99C7EF0D374D4FB29AAAB647047CD0 Ref B: MRS211050313051 Ref C: 2024-07-25T11:09:07Z' + - 'Ref A: EDA1021C3D0545299A44C67C9AE5E812 Ref B: MAA201060514021 Ref C: 2024-11-04T03:14:19Z' status: code: 200 message: OK @@ -52862,31 +58055,21 @@ interactions: ParameterSetName: - -n -g --vwan --address-prefix -l --sku User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualHubs/vhub-000008?api-version=2022-05-01 response: body: - string: "{\r\n \"name\": \"vhub-000008\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualHubs/vhub-000008\",\r\n - \ \"etag\": \"W/\\\"d10319a4-bfaa-4697-9cb4-d04c5ac19c12\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": - [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": - 65515,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": - []\r\n },\r\n \"virtualRouterAutoScaleConfiguration\": {\r\n \"minCapacity\": - 2\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualWans/vwan-000007\"\r\n - \ },\r\n \"networkVirtualAppliances\": [],\r\n \"sku\": \"Standard\",\r\n - \ \"routingState\": \"Provisioning\",\r\n \"allowBranchToBranchTraffic\": - false,\r\n \"hubRoutingPreference\": \"ExpressRoute\"\r\n }\r\n}" + string: '{"name":"vhub-000008","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualHubs/vhub-000008","etag":"W/\"b10cb031-19f7-40c7-9111-4f00313a3853\"","type":"Microsoft.Network/virtualHubs","location":"westus","properties":{"provisioningState":"Succeeded","virtualHubRouteTableV2s":[],"addressPrefix":"10.0.0.0/24","virtualRouterAsn":65515,"virtualRouterIps":[],"routeTable":{"routes":[]},"virtualRouterAutoScaleConfiguration":{"minCapacity":2},"virtualWan":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualWans/vwan-000007"},"networkVirtualAppliances":[],"sku":"Standard","routingState":"Provisioning","allowBranchToBranchTraffic":false,"hubRoutingPreference":"ExpressRoute"}}' headers: cache-control: - no-cache content-length: - - '1028' + - '856' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:09:09 GMT + - Mon, 04 Nov 2024 03:14:20 GMT expires: - '-1' pragma: @@ -52898,9 +58081,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d48aa024-450d-4f86-8791-938042f04b02 + - 8b7bda30-7048-4e8d-9673-b1a6e0d7b9d6 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 415FA703A4B0430BA5A7378EB07345C0 Ref B: MRS211050313051 Ref C: 2024-07-25T11:09:09Z' + - 'Ref A: 864BCECE03C743FCBF6D50061830B32D Ref B: MAA201060514021 Ref C: 2024-11-04T03:14:19Z' status: code: 200 message: OK @@ -52918,21 +58103,21 @@ interactions: ParameterSetName: - -n -g --vhub --public-ip-count --sku --tier User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_firewall_basic_sku_000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001","name":"cli_test_firewall_basic_sku_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_firewall_basic_sku","date":"2024-07-25T10:47:42Z","module":"azure-firewall","Created":"2024-07-25T10:47:45.1857988Z","CreationDate":"2024-07-25T10:47:45.1857917Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001","name":"cli_test_firewall_basic_sku_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_firewall_basic_sku","date":"2024-11-04T02:52:33Z","module":"azure-firewall","Creator":"v-ruih@microsoft.com","DateCreated":"2024-11-04T02:52:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '492' + - '475' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:09:10 GMT + - Mon, 04 Nov 2024 03:14:21 GMT expires: - '-1' pragma: @@ -52943,8 +58128,10 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: C02A149DE02840C5864BDFE0C4449F29 Ref B: MRS211050315017 Ref C: 2024-07-25T11:09:11Z' + - 'Ref A: 7A9B6EE3B8B34E31A22D2323338C9CD5 Ref B: MAA201060513031 Ref C: 2024-11-04T03:14:21Z' status: code: 200 message: OK @@ -52968,32 +58155,25 @@ interactions: ParameterSetName: - -n -g --vhub --public-ip-count --sku --tier User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"firewall-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002\",\r\n - \ \"etag\": \"W/\\\"5e74b52d-50bc-4fd6-859b-cc903aef9e33\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": - \"AZFW_Hub\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"additionalProperties\": - {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualHubs/vhub-000008\"\r\n - \ },\r\n \"hubIPAddresses\": {\r\n \"publicIPs\": {\r\n \"addresses\": - [],\r\n \"count\": 2\r\n }\r\n }\r\n }\r\n}" + string: '{"name":"firewall-000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002","etag":"W/\"38d47f48-960d-466b-a345-83c7aaa0f720\"","type":"Microsoft.Network/azureFirewalls","location":"westus","properties":{"provisioningState":"Updating","sku":{"name":"AZFW_Hub","tier":"Basic"},"additionalProperties":{},"virtualHub":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualHubs/vhub-000008"},"hubIPAddresses":{"publicIPs":{"addresses":[],"count":2}}}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/31aa1e6a-2896-479d-851e-67a907d58e15?api-version=2022-01-01&t=638575025553923920&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=vqe6_GZWAlDr1KOuO0NTl8EkuFcJksO9piKQWbhcALLJqHSoVBjMbfQ6Wn6CUAHQwf3O0a3y-f9kod0KsqTooEWL8V1tokeA2USLMWVd8pSmhrWaWcrlfpmC6lZEq84cRj4r2FKhj9E8EMrYDJfaYmi6CpPrENEVuwIsxaC2PTR5DRIQYQy_IMlN5e_-v8K8zb-8onA9d2o4BbYJvZnOo8EKAYjPtDCAnx5YNEzwHfTzsfAcgdTzOHmiMHPo6otieKqX5X-CdRvW_ufEH8QySwB7USQU_CYN9sZxxaTkzJpJVRxCELX80voBiS2x1nAmHaMv2J0Q28hu-GWlaRhsbg&h=q2hsvOwZ7bc_zLimq_SRfYiDyzlxqY4Ku0puc4YvR0s + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/77a6d66f-e136-4f30-a5c2-50619dfa92b8?api-version=2022-01-01&t=638662868671868553&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=k5ZeC1Jxk2u7vX4lOxkAXVxn6nztSN7LD-Ie7zTu3P46Asrvr_sM0BFSp2OOSAqnL2uR7JFE34xY1EZEdvAxM-aP4dW8PeLC_gqMXIOrKs22uM7D4FbEIUqm2QjcGYREHDq5leB1_j3AHQ1W91p8DnRc1zQtg2c7KcOrxkp_veOhEoifBzJr4wN-IAQI5vHpS-GmKkSanGsS6Ad3gnXKodGRFKux_sSSK3fKd9hqFQ87Ivamnsm319qg9I7o5nv5vSLSiGqaMuw5m9EwGxvCqhLl03Rnn-PD0KM-bDKgrWuOnJfNsCUnFMHASEUqI829o-DWhiVaUi8zroHvo3sWTw&h=Z4wCBUUKHE7ytxOdt3jGng-_fKLN-4swequLWFyZsRY cache-control: - no-cache content-length: - - '810' + - '655' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:09:15 GMT + - Mon, 04 Nov 2024 03:14:26 GMT expires: - '-1' pragma: @@ -53005,11 +58185,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 148e3905-cd99-4488-9c1a-40ff0fbb9b34 + - 92f601c5-9bdb-4152-9c93-4e63df1668f9 + x-ms-ratelimit-remaining-subscription-global-writes: + - '2999' x-ms-ratelimit-remaining-subscription-writes: - - '1144' + - '199' x-msedge-ref: - - 'Ref A: FF7D9DA5C33E422585D5B1EE99129333 Ref B: MRS211050315049 Ref C: 2024-07-25T11:09:11Z' + - 'Ref A: 7C5AAD209FD64B3693F8D84CF4D7FB4B Ref B: MAA201060515033 Ref C: 2024-11-04T03:14:22Z' status: code: 201 message: Created @@ -53027,21 +58209,21 @@ interactions: ParameterSetName: - -n -g --vhub --public-ip-count --sku --tier User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/31aa1e6a-2896-479d-851e-67a907d58e15?api-version=2022-01-01&t=638575025553923920&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=vqe6_GZWAlDr1KOuO0NTl8EkuFcJksO9piKQWbhcALLJqHSoVBjMbfQ6Wn6CUAHQwf3O0a3y-f9kod0KsqTooEWL8V1tokeA2USLMWVd8pSmhrWaWcrlfpmC6lZEq84cRj4r2FKhj9E8EMrYDJfaYmi6CpPrENEVuwIsxaC2PTR5DRIQYQy_IMlN5e_-v8K8zb-8onA9d2o4BbYJvZnOo8EKAYjPtDCAnx5YNEzwHfTzsfAcgdTzOHmiMHPo6otieKqX5X-CdRvW_ufEH8QySwB7USQU_CYN9sZxxaTkzJpJVRxCELX80voBiS2x1nAmHaMv2J0Q28hu-GWlaRhsbg&h=q2hsvOwZ7bc_zLimq_SRfYiDyzlxqY4Ku0puc4YvR0s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/77a6d66f-e136-4f30-a5c2-50619dfa92b8?api-version=2022-01-01&t=638662868671868553&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=k5ZeC1Jxk2u7vX4lOxkAXVxn6nztSN7LD-Ie7zTu3P46Asrvr_sM0BFSp2OOSAqnL2uR7JFE34xY1EZEdvAxM-aP4dW8PeLC_gqMXIOrKs22uM7D4FbEIUqm2QjcGYREHDq5leB1_j3AHQ1W91p8DnRc1zQtg2c7KcOrxkp_veOhEoifBzJr4wN-IAQI5vHpS-GmKkSanGsS6Ad3gnXKodGRFKux_sSSK3fKd9hqFQ87Ivamnsm319qg9I7o5nv5vSLSiGqaMuw5m9EwGxvCqhLl03Rnn-PD0KM-bDKgrWuOnJfNsCUnFMHASEUqI829o-DWhiVaUi8zroHvo3sWTw&h=Z4wCBUUKHE7ytxOdt3jGng-_fKLN-4swequLWFyZsRY response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:09:15 GMT + - Mon, 04 Nov 2024 03:14:27 GMT expires: - '-1' pragma: @@ -53053,9 +58235,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a9489633-ee19-4ceb-9d96-b642aa248db7 + - addd5728-8ba6-4a92-8d28-e6f7f81b22c7 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: FEC1B004DA904F628CB77B0CC4B1C83E Ref B: MRS211050315049 Ref C: 2024-07-25T11:09:15Z' + - 'Ref A: F2C5B8EA94354797928F711BB0E5C525 Ref B: MAA201060515033 Ref C: 2024-11-04T03:14:27Z' status: code: 200 message: OK @@ -53073,21 +58257,21 @@ interactions: ParameterSetName: - -n -g --vhub --public-ip-count --sku --tier User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/31aa1e6a-2896-479d-851e-67a907d58e15?api-version=2022-01-01&t=638575025553923920&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=vqe6_GZWAlDr1KOuO0NTl8EkuFcJksO9piKQWbhcALLJqHSoVBjMbfQ6Wn6CUAHQwf3O0a3y-f9kod0KsqTooEWL8V1tokeA2USLMWVd8pSmhrWaWcrlfpmC6lZEq84cRj4r2FKhj9E8EMrYDJfaYmi6CpPrENEVuwIsxaC2PTR5DRIQYQy_IMlN5e_-v8K8zb-8onA9d2o4BbYJvZnOo8EKAYjPtDCAnx5YNEzwHfTzsfAcgdTzOHmiMHPo6otieKqX5X-CdRvW_ufEH8QySwB7USQU_CYN9sZxxaTkzJpJVRxCELX80voBiS2x1nAmHaMv2J0Q28hu-GWlaRhsbg&h=q2hsvOwZ7bc_zLimq_SRfYiDyzlxqY4Ku0puc4YvR0s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/77a6d66f-e136-4f30-a5c2-50619dfa92b8?api-version=2022-01-01&t=638662868671868553&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=k5ZeC1Jxk2u7vX4lOxkAXVxn6nztSN7LD-Ie7zTu3P46Asrvr_sM0BFSp2OOSAqnL2uR7JFE34xY1EZEdvAxM-aP4dW8PeLC_gqMXIOrKs22uM7D4FbEIUqm2QjcGYREHDq5leB1_j3AHQ1W91p8DnRc1zQtg2c7KcOrxkp_veOhEoifBzJr4wN-IAQI5vHpS-GmKkSanGsS6Ad3gnXKodGRFKux_sSSK3fKd9hqFQ87Ivamnsm319qg9I7o5nv5vSLSiGqaMuw5m9EwGxvCqhLl03Rnn-PD0KM-bDKgrWuOnJfNsCUnFMHASEUqI829o-DWhiVaUi8zroHvo3sWTw&h=Z4wCBUUKHE7ytxOdt3jGng-_fKLN-4swequLWFyZsRY response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:09:25 GMT + - Mon, 04 Nov 2024 03:14:37 GMT expires: - '-1' pragma: @@ -53099,9 +58283,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f96b9287-3f7a-4d20-87cb-5306a10b24b5 + - 566d210b-bc1a-43ef-b3f0-9f02dddf3c74 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: E4D7755ED8604A46ACF705A19C59D294 Ref B: MRS211050315049 Ref C: 2024-07-25T11:09:25Z' + - 'Ref A: 81D98D7DAE1F4FE58F4745555DB5A2D5 Ref B: MAA201060515033 Ref C: 2024-11-04T03:14:38Z' status: code: 200 message: OK @@ -53119,21 +58305,21 @@ interactions: ParameterSetName: - -n -g --vhub --public-ip-count --sku --tier User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/31aa1e6a-2896-479d-851e-67a907d58e15?api-version=2022-01-01&t=638575025553923920&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=vqe6_GZWAlDr1KOuO0NTl8EkuFcJksO9piKQWbhcALLJqHSoVBjMbfQ6Wn6CUAHQwf3O0a3y-f9kod0KsqTooEWL8V1tokeA2USLMWVd8pSmhrWaWcrlfpmC6lZEq84cRj4r2FKhj9E8EMrYDJfaYmi6CpPrENEVuwIsxaC2PTR5DRIQYQy_IMlN5e_-v8K8zb-8onA9d2o4BbYJvZnOo8EKAYjPtDCAnx5YNEzwHfTzsfAcgdTzOHmiMHPo6otieKqX5X-CdRvW_ufEH8QySwB7USQU_CYN9sZxxaTkzJpJVRxCELX80voBiS2x1nAmHaMv2J0Q28hu-GWlaRhsbg&h=q2hsvOwZ7bc_zLimq_SRfYiDyzlxqY4Ku0puc4YvR0s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/77a6d66f-e136-4f30-a5c2-50619dfa92b8?api-version=2022-01-01&t=638662868671868553&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=k5ZeC1Jxk2u7vX4lOxkAXVxn6nztSN7LD-Ie7zTu3P46Asrvr_sM0BFSp2OOSAqnL2uR7JFE34xY1EZEdvAxM-aP4dW8PeLC_gqMXIOrKs22uM7D4FbEIUqm2QjcGYREHDq5leB1_j3AHQ1W91p8DnRc1zQtg2c7KcOrxkp_veOhEoifBzJr4wN-IAQI5vHpS-GmKkSanGsS6Ad3gnXKodGRFKux_sSSK3fKd9hqFQ87Ivamnsm319qg9I7o5nv5vSLSiGqaMuw5m9EwGxvCqhLl03Rnn-PD0KM-bDKgrWuOnJfNsCUnFMHASEUqI829o-DWhiVaUi8zroHvo3sWTw&h=Z4wCBUUKHE7ytxOdt3jGng-_fKLN-4swequLWFyZsRY response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:09:46 GMT + - Mon, 04 Nov 2024 03:14:58 GMT expires: - '-1' pragma: @@ -53145,9 +58331,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1f9c0b61-3076-4b31-a16f-6aa8ba8fcb6b + - 357b408e-22b6-4e0e-ab94-6a9178600648 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: F54F825733104CB0B4EC69AB421A7FC4 Ref B: MRS211050315049 Ref C: 2024-07-25T11:09:46Z' + - 'Ref A: 24766ACFAB374057B0C6E2781934ABDE Ref B: MAA201060515033 Ref C: 2024-11-04T03:14:58Z' status: code: 200 message: OK @@ -53165,21 +58353,21 @@ interactions: ParameterSetName: - -n -g --vhub --public-ip-count --sku --tier User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/31aa1e6a-2896-479d-851e-67a907d58e15?api-version=2022-01-01&t=638575025553923920&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=vqe6_GZWAlDr1KOuO0NTl8EkuFcJksO9piKQWbhcALLJqHSoVBjMbfQ6Wn6CUAHQwf3O0a3y-f9kod0KsqTooEWL8V1tokeA2USLMWVd8pSmhrWaWcrlfpmC6lZEq84cRj4r2FKhj9E8EMrYDJfaYmi6CpPrENEVuwIsxaC2PTR5DRIQYQy_IMlN5e_-v8K8zb-8onA9d2o4BbYJvZnOo8EKAYjPtDCAnx5YNEzwHfTzsfAcgdTzOHmiMHPo6otieKqX5X-CdRvW_ufEH8QySwB7USQU_CYN9sZxxaTkzJpJVRxCELX80voBiS2x1nAmHaMv2J0Q28hu-GWlaRhsbg&h=q2hsvOwZ7bc_zLimq_SRfYiDyzlxqY4Ku0puc4YvR0s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/77a6d66f-e136-4f30-a5c2-50619dfa92b8?api-version=2022-01-01&t=638662868671868553&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=k5ZeC1Jxk2u7vX4lOxkAXVxn6nztSN7LD-Ie7zTu3P46Asrvr_sM0BFSp2OOSAqnL2uR7JFE34xY1EZEdvAxM-aP4dW8PeLC_gqMXIOrKs22uM7D4FbEIUqm2QjcGYREHDq5leB1_j3AHQ1W91p8DnRc1zQtg2c7KcOrxkp_veOhEoifBzJr4wN-IAQI5vHpS-GmKkSanGsS6Ad3gnXKodGRFKux_sSSK3fKd9hqFQ87Ivamnsm319qg9I7o5nv5vSLSiGqaMuw5m9EwGxvCqhLl03Rnn-PD0KM-bDKgrWuOnJfNsCUnFMHASEUqI829o-DWhiVaUi8zroHvo3sWTw&h=Z4wCBUUKHE7ytxOdt3jGng-_fKLN-4swequLWFyZsRY response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:10:06 GMT + - Mon, 04 Nov 2024 03:15:19 GMT expires: - '-1' pragma: @@ -53191,9 +58379,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 85dd8a0f-8646-4e6b-931c-71996277d01c + - 4fd1990c-7e44-4e98-a988-cb50b94b596a + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 6B4E16488C9245F5ACBEC09BA2BC21EB Ref B: MRS211050315049 Ref C: 2024-07-25T11:10:06Z' + - 'Ref A: 3E41916B92394CCD80444432ABA61806 Ref B: MAA201060515033 Ref C: 2024-11-04T03:15:19Z' status: code: 200 message: OK @@ -53211,21 +58401,21 @@ interactions: ParameterSetName: - -n -g --vhub --public-ip-count --sku --tier User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/31aa1e6a-2896-479d-851e-67a907d58e15?api-version=2022-01-01&t=638575025553923920&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=vqe6_GZWAlDr1KOuO0NTl8EkuFcJksO9piKQWbhcALLJqHSoVBjMbfQ6Wn6CUAHQwf3O0a3y-f9kod0KsqTooEWL8V1tokeA2USLMWVd8pSmhrWaWcrlfpmC6lZEq84cRj4r2FKhj9E8EMrYDJfaYmi6CpPrENEVuwIsxaC2PTR5DRIQYQy_IMlN5e_-v8K8zb-8onA9d2o4BbYJvZnOo8EKAYjPtDCAnx5YNEzwHfTzsfAcgdTzOHmiMHPo6otieKqX5X-CdRvW_ufEH8QySwB7USQU_CYN9sZxxaTkzJpJVRxCELX80voBiS2x1nAmHaMv2J0Q28hu-GWlaRhsbg&h=q2hsvOwZ7bc_zLimq_SRfYiDyzlxqY4Ku0puc4YvR0s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/77a6d66f-e136-4f30-a5c2-50619dfa92b8?api-version=2022-01-01&t=638662868671868553&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=k5ZeC1Jxk2u7vX4lOxkAXVxn6nztSN7LD-Ie7zTu3P46Asrvr_sM0BFSp2OOSAqnL2uR7JFE34xY1EZEdvAxM-aP4dW8PeLC_gqMXIOrKs22uM7D4FbEIUqm2QjcGYREHDq5leB1_j3AHQ1W91p8DnRc1zQtg2c7KcOrxkp_veOhEoifBzJr4wN-IAQI5vHpS-GmKkSanGsS6Ad3gnXKodGRFKux_sSSK3fKd9hqFQ87Ivamnsm319qg9I7o5nv5vSLSiGqaMuw5m9EwGxvCqhLl03Rnn-PD0KM-bDKgrWuOnJfNsCUnFMHASEUqI829o-DWhiVaUi8zroHvo3sWTw&h=Z4wCBUUKHE7ytxOdt3jGng-_fKLN-4swequLWFyZsRY response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:10:47 GMT + - Mon, 04 Nov 2024 03:16:00 GMT expires: - '-1' pragma: @@ -53237,9 +58427,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f837ae35-c3f2-4340-b564-006003385b1b + - ff3aa4ac-06d1-4879-ab17-13fe60e8d917 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: E2C9F7844F004163BC6996E3E60AE62A Ref B: MRS211050315049 Ref C: 2024-07-25T11:10:47Z' + - 'Ref A: DD19CAD85E264C37AE525340FA42F4CC Ref B: MAA201060515033 Ref C: 2024-11-04T03:16:00Z' status: code: 200 message: OK @@ -53257,21 +58449,21 @@ interactions: ParameterSetName: - -n -g --vhub --public-ip-count --sku --tier User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/31aa1e6a-2896-479d-851e-67a907d58e15?api-version=2022-01-01&t=638575025553923920&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=vqe6_GZWAlDr1KOuO0NTl8EkuFcJksO9piKQWbhcALLJqHSoVBjMbfQ6Wn6CUAHQwf3O0a3y-f9kod0KsqTooEWL8V1tokeA2USLMWVd8pSmhrWaWcrlfpmC6lZEq84cRj4r2FKhj9E8EMrYDJfaYmi6CpPrENEVuwIsxaC2PTR5DRIQYQy_IMlN5e_-v8K8zb-8onA9d2o4BbYJvZnOo8EKAYjPtDCAnx5YNEzwHfTzsfAcgdTzOHmiMHPo6otieKqX5X-CdRvW_ufEH8QySwB7USQU_CYN9sZxxaTkzJpJVRxCELX80voBiS2x1nAmHaMv2J0Q28hu-GWlaRhsbg&h=q2hsvOwZ7bc_zLimq_SRfYiDyzlxqY4Ku0puc4YvR0s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/77a6d66f-e136-4f30-a5c2-50619dfa92b8?api-version=2022-01-01&t=638662868671868553&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=k5ZeC1Jxk2u7vX4lOxkAXVxn6nztSN7LD-Ie7zTu3P46Asrvr_sM0BFSp2OOSAqnL2uR7JFE34xY1EZEdvAxM-aP4dW8PeLC_gqMXIOrKs22uM7D4FbEIUqm2QjcGYREHDq5leB1_j3AHQ1W91p8DnRc1zQtg2c7KcOrxkp_veOhEoifBzJr4wN-IAQI5vHpS-GmKkSanGsS6Ad3gnXKodGRFKux_sSSK3fKd9hqFQ87Ivamnsm319qg9I7o5nv5vSLSiGqaMuw5m9EwGxvCqhLl03Rnn-PD0KM-bDKgrWuOnJfNsCUnFMHASEUqI829o-DWhiVaUi8zroHvo3sWTw&h=Z4wCBUUKHE7ytxOdt3jGng-_fKLN-4swequLWFyZsRY response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:11:27 GMT + - Mon, 04 Nov 2024 03:16:40 GMT expires: - '-1' pragma: @@ -53283,9 +58475,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3eb260c8-8e9f-4f41-858a-524537b664c1 + - 1fb58d03-558e-480d-a589-12dba09150f7 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 19662BBD742D407DB9B4C8BA0986CB7F Ref B: MRS211050315049 Ref C: 2024-07-25T11:11:28Z' + - 'Ref A: 7A2203DB83074D75AC9A1EBC06CDD6E4 Ref B: MAA201060515033 Ref C: 2024-11-04T03:16:41Z' status: code: 200 message: OK @@ -53303,21 +58497,21 @@ interactions: ParameterSetName: - -n -g --vhub --public-ip-count --sku --tier User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/31aa1e6a-2896-479d-851e-67a907d58e15?api-version=2022-01-01&t=638575025553923920&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=vqe6_GZWAlDr1KOuO0NTl8EkuFcJksO9piKQWbhcALLJqHSoVBjMbfQ6Wn6CUAHQwf3O0a3y-f9kod0KsqTooEWL8V1tokeA2USLMWVd8pSmhrWaWcrlfpmC6lZEq84cRj4r2FKhj9E8EMrYDJfaYmi6CpPrENEVuwIsxaC2PTR5DRIQYQy_IMlN5e_-v8K8zb-8onA9d2o4BbYJvZnOo8EKAYjPtDCAnx5YNEzwHfTzsfAcgdTzOHmiMHPo6otieKqX5X-CdRvW_ufEH8QySwB7USQU_CYN9sZxxaTkzJpJVRxCELX80voBiS2x1nAmHaMv2J0Q28hu-GWlaRhsbg&h=q2hsvOwZ7bc_zLimq_SRfYiDyzlxqY4Ku0puc4YvR0s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/77a6d66f-e136-4f30-a5c2-50619dfa92b8?api-version=2022-01-01&t=638662868671868553&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=k5ZeC1Jxk2u7vX4lOxkAXVxn6nztSN7LD-Ie7zTu3P46Asrvr_sM0BFSp2OOSAqnL2uR7JFE34xY1EZEdvAxM-aP4dW8PeLC_gqMXIOrKs22uM7D4FbEIUqm2QjcGYREHDq5leB1_j3AHQ1W91p8DnRc1zQtg2c7KcOrxkp_veOhEoifBzJr4wN-IAQI5vHpS-GmKkSanGsS6Ad3gnXKodGRFKux_sSSK3fKd9hqFQ87Ivamnsm319qg9I7o5nv5vSLSiGqaMuw5m9EwGxvCqhLl03Rnn-PD0KM-bDKgrWuOnJfNsCUnFMHASEUqI829o-DWhiVaUi8zroHvo3sWTw&h=Z4wCBUUKHE7ytxOdt3jGng-_fKLN-4swequLWFyZsRY response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:12:48 GMT + - Mon, 04 Nov 2024 03:18:02 GMT expires: - '-1' pragma: @@ -53329,9 +58523,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4ed8293b-513b-4966-8c6b-7b27a143ff47 + - 6eb57360-9caf-4680-a25c-b93d6a3efa8b + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 664FE71E3A92453199FFDAE477350DE7 Ref B: MRS211050313031 Ref C: 2024-07-25T11:12:48Z' + - 'Ref A: E73BAC8EFDD645AAAFE20F6577755364 Ref B: MAA201060515053 Ref C: 2024-11-04T03:18:02Z' status: code: 200 message: OK @@ -53349,21 +58545,21 @@ interactions: ParameterSetName: - -n -g --vhub --public-ip-count --sku --tier User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/31aa1e6a-2896-479d-851e-67a907d58e15?api-version=2022-01-01&t=638575025553923920&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=vqe6_GZWAlDr1KOuO0NTl8EkuFcJksO9piKQWbhcALLJqHSoVBjMbfQ6Wn6CUAHQwf3O0a3y-f9kod0KsqTooEWL8V1tokeA2USLMWVd8pSmhrWaWcrlfpmC6lZEq84cRj4r2FKhj9E8EMrYDJfaYmi6CpPrENEVuwIsxaC2PTR5DRIQYQy_IMlN5e_-v8K8zb-8onA9d2o4BbYJvZnOo8EKAYjPtDCAnx5YNEzwHfTzsfAcgdTzOHmiMHPo6otieKqX5X-CdRvW_ufEH8QySwB7USQU_CYN9sZxxaTkzJpJVRxCELX80voBiS2x1nAmHaMv2J0Q28hu-GWlaRhsbg&h=q2hsvOwZ7bc_zLimq_SRfYiDyzlxqY4Ku0puc4YvR0s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/77a6d66f-e136-4f30-a5c2-50619dfa92b8?api-version=2022-01-01&t=638662868671868553&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=k5ZeC1Jxk2u7vX4lOxkAXVxn6nztSN7LD-Ie7zTu3P46Asrvr_sM0BFSp2OOSAqnL2uR7JFE34xY1EZEdvAxM-aP4dW8PeLC_gqMXIOrKs22uM7D4FbEIUqm2QjcGYREHDq5leB1_j3AHQ1W91p8DnRc1zQtg2c7KcOrxkp_veOhEoifBzJr4wN-IAQI5vHpS-GmKkSanGsS6Ad3gnXKodGRFKux_sSSK3fKd9hqFQ87Ivamnsm319qg9I7o5nv5vSLSiGqaMuw5m9EwGxvCqhLl03Rnn-PD0KM-bDKgrWuOnJfNsCUnFMHASEUqI829o-DWhiVaUi8zroHvo3sWTw&h=Z4wCBUUKHE7ytxOdt3jGng-_fKLN-4swequLWFyZsRY response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:15:29 GMT + - Mon, 04 Nov 2024 03:20:43 GMT expires: - '-1' pragma: @@ -53375,9 +58571,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1b1a9f5e-83e0-4808-a6d9-ebaa6964e01b + - 87ba0054-0d31-4a39-99ac-f056197bac1f + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 43944DDC5FD343139563285CCF6EF320 Ref B: MRS211050315009 Ref C: 2024-07-25T11:15:29Z' + - 'Ref A: 0BAE06DAC902430C8C6BADA2E0D2B25C Ref B: MAA201060515039 Ref C: 2024-11-04T03:20:43Z' status: code: 200 message: OK @@ -53395,21 +58593,21 @@ interactions: ParameterSetName: - -n -g --vhub --public-ip-count --sku --tier User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/31aa1e6a-2896-479d-851e-67a907d58e15?api-version=2022-01-01&t=638575025553923920&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=vqe6_GZWAlDr1KOuO0NTl8EkuFcJksO9piKQWbhcALLJqHSoVBjMbfQ6Wn6CUAHQwf3O0a3y-f9kod0KsqTooEWL8V1tokeA2USLMWVd8pSmhrWaWcrlfpmC6lZEq84cRj4r2FKhj9E8EMrYDJfaYmi6CpPrENEVuwIsxaC2PTR5DRIQYQy_IMlN5e_-v8K8zb-8onA9d2o4BbYJvZnOo8EKAYjPtDCAnx5YNEzwHfTzsfAcgdTzOHmiMHPo6otieKqX5X-CdRvW_ufEH8QySwB7USQU_CYN9sZxxaTkzJpJVRxCELX80voBiS2x1nAmHaMv2J0Q28hu-GWlaRhsbg&h=q2hsvOwZ7bc_zLimq_SRfYiDyzlxqY4Ku0puc4YvR0s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/77a6d66f-e136-4f30-a5c2-50619dfa92b8?api-version=2022-01-01&t=638662868671868553&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=k5ZeC1Jxk2u7vX4lOxkAXVxn6nztSN7LD-Ie7zTu3P46Asrvr_sM0BFSp2OOSAqnL2uR7JFE34xY1EZEdvAxM-aP4dW8PeLC_gqMXIOrKs22uM7D4FbEIUqm2QjcGYREHDq5leB1_j3AHQ1W91p8DnRc1zQtg2c7KcOrxkp_veOhEoifBzJr4wN-IAQI5vHpS-GmKkSanGsS6Ad3gnXKodGRFKux_sSSK3fKd9hqFQ87Ivamnsm319qg9I7o5nv5vSLSiGqaMuw5m9EwGxvCqhLl03Rnn-PD0KM-bDKgrWuOnJfNsCUnFMHASEUqI829o-DWhiVaUi8zroHvo3sWTw&h=Z4wCBUUKHE7ytxOdt3jGng-_fKLN-4swequLWFyZsRY response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:17:09 GMT + - Mon, 04 Nov 2024 03:22:24 GMT expires: - '-1' pragma: @@ -53421,9 +58619,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c4ad2d6b-7431-475e-bfa5-124b02a59096 + - 4eff7f3e-bb23-4d7b-8b2b-0cca7a9a386e + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: 55DDDA1058134F7F81C9408531146EC0 Ref B: MRS211050315051 Ref C: 2024-07-25T11:17:10Z' + - 'Ref A: 07B510F9AB064B3FB5EB4AE646CA0519 Ref B: MAA201060516009 Ref C: 2024-11-04T03:22:24Z' status: code: 200 message: OK @@ -53441,21 +58641,21 @@ interactions: ParameterSetName: - -n -g --vhub --public-ip-count --sku --tier User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/31aa1e6a-2896-479d-851e-67a907d58e15?api-version=2022-01-01&t=638575025553923920&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=vqe6_GZWAlDr1KOuO0NTl8EkuFcJksO9piKQWbhcALLJqHSoVBjMbfQ6Wn6CUAHQwf3O0a3y-f9kod0KsqTooEWL8V1tokeA2USLMWVd8pSmhrWaWcrlfpmC6lZEq84cRj4r2FKhj9E8EMrYDJfaYmi6CpPrENEVuwIsxaC2PTR5DRIQYQy_IMlN5e_-v8K8zb-8onA9d2o4BbYJvZnOo8EKAYjPtDCAnx5YNEzwHfTzsfAcgdTzOHmiMHPo6otieKqX5X-CdRvW_ufEH8QySwB7USQU_CYN9sZxxaTkzJpJVRxCELX80voBiS2x1nAmHaMv2J0Q28hu-GWlaRhsbg&h=q2hsvOwZ7bc_zLimq_SRfYiDyzlxqY4Ku0puc4YvR0s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/77a6d66f-e136-4f30-a5c2-50619dfa92b8?api-version=2022-01-01&t=638662868671868553&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=k5ZeC1Jxk2u7vX4lOxkAXVxn6nztSN7LD-Ie7zTu3P46Asrvr_sM0BFSp2OOSAqnL2uR7JFE34xY1EZEdvAxM-aP4dW8PeLC_gqMXIOrKs22uM7D4FbEIUqm2QjcGYREHDq5leB1_j3AHQ1W91p8DnRc1zQtg2c7KcOrxkp_veOhEoifBzJr4wN-IAQI5vHpS-GmKkSanGsS6Ad3gnXKodGRFKux_sSSK3fKd9hqFQ87Ivamnsm319qg9I7o5nv5vSLSiGqaMuw5m9EwGxvCqhLl03Rnn-PD0KM-bDKgrWuOnJfNsCUnFMHASEUqI829o-DWhiVaUi8zroHvo3sWTw&h=Z4wCBUUKHE7ytxOdt3jGng-_fKLN-4swequLWFyZsRY response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:18:50 GMT + - Mon, 04 Nov 2024 03:24:06 GMT expires: - '-1' pragma: @@ -53467,9 +58667,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 083ed790-9a30-472f-8b40-ea6a220adb60 + - b2f8bf2e-19cb-44b2-8f55-a2b7f532f741 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: FD408645EC3F4EAA8B3D90B22B8EB9B2 Ref B: MRS211050313037 Ref C: 2024-07-25T11:18:50Z' + - 'Ref A: 066BC2D089084549B99B8F468FA3A06E Ref B: MAA201060513019 Ref C: 2024-11-04T03:24:06Z' status: code: 200 message: OK @@ -53487,21 +58689,21 @@ interactions: ParameterSetName: - -n -g --vhub --public-ip-count --sku --tier User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/31aa1e6a-2896-479d-851e-67a907d58e15?api-version=2022-01-01&t=638575025553923920&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=vqe6_GZWAlDr1KOuO0NTl8EkuFcJksO9piKQWbhcALLJqHSoVBjMbfQ6Wn6CUAHQwf3O0a3y-f9kod0KsqTooEWL8V1tokeA2USLMWVd8pSmhrWaWcrlfpmC6lZEq84cRj4r2FKhj9E8EMrYDJfaYmi6CpPrENEVuwIsxaC2PTR5DRIQYQy_IMlN5e_-v8K8zb-8onA9d2o4BbYJvZnOo8EKAYjPtDCAnx5YNEzwHfTzsfAcgdTzOHmiMHPo6otieKqX5X-CdRvW_ufEH8QySwB7USQU_CYN9sZxxaTkzJpJVRxCELX80voBiS2x1nAmHaMv2J0Q28hu-GWlaRhsbg&h=q2hsvOwZ7bc_zLimq_SRfYiDyzlxqY4Ku0puc4YvR0s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/77a6d66f-e136-4f30-a5c2-50619dfa92b8?api-version=2022-01-01&t=638662868671868553&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=k5ZeC1Jxk2u7vX4lOxkAXVxn6nztSN7LD-Ie7zTu3P46Asrvr_sM0BFSp2OOSAqnL2uR7JFE34xY1EZEdvAxM-aP4dW8PeLC_gqMXIOrKs22uM7D4FbEIUqm2QjcGYREHDq5leB1_j3AHQ1W91p8DnRc1zQtg2c7KcOrxkp_veOhEoifBzJr4wN-IAQI5vHpS-GmKkSanGsS6Ad3gnXKodGRFKux_sSSK3fKd9hqFQ87Ivamnsm319qg9I7o5nv5vSLSiGqaMuw5m9EwGxvCqhLl03Rnn-PD0KM-bDKgrWuOnJfNsCUnFMHASEUqI829o-DWhiVaUi8zroHvo3sWTw&h=Z4wCBUUKHE7ytxOdt3jGng-_fKLN-4swequLWFyZsRY response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:20:33 GMT + - Mon, 04 Nov 2024 03:25:47 GMT expires: - '-1' pragma: @@ -53513,9 +58715,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a3bf6c8f-10cb-4486-9f77-052d18e1e1e3 + - d6663cb3-1978-4120-a812-0e868e96e4fc + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: C2B62CE3D5BC49F2BD8664589F10D06B Ref B: MRS211050618053 Ref C: 2024-07-25T11:20:32Z' + - 'Ref A: 0B667F0056A1488C92F443D293821F76 Ref B: MAA201060516021 Ref C: 2024-11-04T03:25:47Z' status: code: 200 message: OK @@ -53533,159 +58737,21 @@ interactions: ParameterSetName: - -n -g --vhub --public-ip-count --sku --tier User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/31aa1e6a-2896-479d-851e-67a907d58e15?api-version=2022-01-01&t=638575025553923920&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=vqe6_GZWAlDr1KOuO0NTl8EkuFcJksO9piKQWbhcALLJqHSoVBjMbfQ6Wn6CUAHQwf3O0a3y-f9kod0KsqTooEWL8V1tokeA2USLMWVd8pSmhrWaWcrlfpmC6lZEq84cRj4r2FKhj9E8EMrYDJfaYmi6CpPrENEVuwIsxaC2PTR5DRIQYQy_IMlN5e_-v8K8zb-8onA9d2o4BbYJvZnOo8EKAYjPtDCAnx5YNEzwHfTzsfAcgdTzOHmiMHPo6otieKqX5X-CdRvW_ufEH8QySwB7USQU_CYN9sZxxaTkzJpJVRxCELX80voBiS2x1nAmHaMv2J0Q28hu-GWlaRhsbg&h=q2hsvOwZ7bc_zLimq_SRfYiDyzlxqY4Ku0puc4YvR0s + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/77a6d66f-e136-4f30-a5c2-50619dfa92b8?api-version=2022-01-01&t=638662868671868553&c=MIIHhzCCBm-gAwIBAgITfAWQ0hCHZtQ3fJ4PSAAABZDSEDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTI3MDkwMTAzWhcNMjUwMzI2MDkwMTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANt7qVbg97HivqUzi3BPPNiHD4wLqYw03AkBiXDpww3W8iIU6FZbbOXVgCL-rGpnbxPkLEVZ1WtRfvLgR3qDiVRjkSnE2knSE6qtvBRWdqqsD9YiSi5lYW67vgtBA_mHzHNDb0zhZ2iofVE5GjHIKYINZSTo8of54bY_fJe0xenYEq7lMpbffWaoano6LQH1L0hSdzAreTN7T_bTsK7TkXQtx45c1upRueZR1wq4PRd-9AYpkfKHhxnCe5LBeLB-Q88WZbmNxuycYiJZzbEGVcEbg5fYdfYb4QveB2WmK7bCWSEDu7WzRaYN9zfP9ZpVnTHTmRcN-f3uvUzxNBMe26UCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBT07kfCxeuv0whuO9NP27UpdS8ZAzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFB6-4Y-Z7skVWaPi2vBOob5I-JLv_MqkE8tGWMMCFI9McOWBWfeJWV7aA4X4MEwnVfuFzE4mdak49KhEWgAbnGBMMumWJtlE1VDYwoYj3k6VDrhg4K8cRAO24Ezl3_L9yTqPLHhnKpjnjZONChdqvy6tXy9zLDyo9uThhHykSdIVQPaynG83JYpUlN1akyNJVLxae9NCRV251OTh00g9z6gt1b4nk-Nszy6YtF1AoskPTpeZVcsxGTlq3ITXveDCeZrYbQ6EtZf5O8ekTrNsG-8DMSDIgDta1Dud4RchYh74jtodoiwmneC_ZG5VDcpozae4Mh1w3_kD4-E11i1U1U&s=k5ZeC1Jxk2u7vX4lOxkAXVxn6nztSN7LD-Ie7zTu3P46Asrvr_sM0BFSp2OOSAqnL2uR7JFE34xY1EZEdvAxM-aP4dW8PeLC_gqMXIOrKs22uM7D4FbEIUqm2QjcGYREHDq5leB1_j3AHQ1W91p8DnRc1zQtg2c7KcOrxkp_veOhEoifBzJr4wN-IAQI5vHpS-GmKkSanGsS6Ad3gnXKodGRFKux_sSSK3fKd9hqFQ87Ivamnsm319qg9I7o5nv5vSLSiGqaMuw5m9EwGxvCqhLl03Rnn-PD0KM-bDKgrWuOnJfNsCUnFMHASEUqI829o-DWhiVaUi8zroHvo3sWTw&h=Z4wCBUUKHE7ytxOdt3jGng-_fKLN-4swequLWFyZsRY response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Jul 2024 11:22:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 50cdb53a-00e9-40ba-85ac-4853167199b5 - x-msedge-ref: - - 'Ref A: 62D2472C977C47FFB6B3F5FCD605367F Ref B: MRS211050315011 Ref C: 2024-07-25T11:22:14Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall create - Connection: - - keep-alive - ParameterSetName: - - -n -g --vhub --public-ip-count --sku --tier - User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/31aa1e6a-2896-479d-851e-67a907d58e15?api-version=2022-01-01&t=638575025553923920&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=vqe6_GZWAlDr1KOuO0NTl8EkuFcJksO9piKQWbhcALLJqHSoVBjMbfQ6Wn6CUAHQwf3O0a3y-f9kod0KsqTooEWL8V1tokeA2USLMWVd8pSmhrWaWcrlfpmC6lZEq84cRj4r2FKhj9E8EMrYDJfaYmi6CpPrENEVuwIsxaC2PTR5DRIQYQy_IMlN5e_-v8K8zb-8onA9d2o4BbYJvZnOo8EKAYjPtDCAnx5YNEzwHfTzsfAcgdTzOHmiMHPo6otieKqX5X-CdRvW_ufEH8QySwB7USQU_CYN9sZxxaTkzJpJVRxCELX80voBiS2x1nAmHaMv2J0Q28hu-GWlaRhsbg&h=q2hsvOwZ7bc_zLimq_SRfYiDyzlxqY4Ku0puc4YvR0s - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Jul 2024 11:23:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 96eeb4bb-2800-47be-b821-07fcd9d66308 - x-msedge-ref: - - 'Ref A: 614996F3094145EFB9AD78AC5B0523E9 Ref B: MRS211050619039 Ref C: 2024-07-25T11:23:55Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall create - Connection: - - keep-alive - ParameterSetName: - - -n -g --vhub --public-ip-count --sku --tier - User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/31aa1e6a-2896-479d-851e-67a907d58e15?api-version=2022-01-01&t=638575025553923920&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=vqe6_GZWAlDr1KOuO0NTl8EkuFcJksO9piKQWbhcALLJqHSoVBjMbfQ6Wn6CUAHQwf3O0a3y-f9kod0KsqTooEWL8V1tokeA2USLMWVd8pSmhrWaWcrlfpmC6lZEq84cRj4r2FKhj9E8EMrYDJfaYmi6CpPrENEVuwIsxaC2PTR5DRIQYQy_IMlN5e_-v8K8zb-8onA9d2o4BbYJvZnOo8EKAYjPtDCAnx5YNEzwHfTzsfAcgdTzOHmiMHPo6otieKqX5X-CdRvW_ufEH8QySwB7USQU_CYN9sZxxaTkzJpJVRxCELX80voBiS2x1nAmHaMv2J0Q28hu-GWlaRhsbg&h=q2hsvOwZ7bc_zLimq_SRfYiDyzlxqY4Ku0puc4YvR0s - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 25 Jul 2024 11:25:37 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 9bb8c9c3-1b8b-4fa1-8746-24a71298b68f - x-msedge-ref: - - 'Ref A: 1D7D8A80FA7B415A861D666974144BA1 Ref B: MRS211050313035 Ref C: 2024-07-25T11:25:37Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall create - Connection: - - keep-alive - ParameterSetName: - - -n -g --vhub --public-ip-count --sku --tier - User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/31aa1e6a-2896-479d-851e-67a907d58e15?api-version=2022-01-01&t=638575025553923920&c=MIIH5zCCBs-gAwIBAgITfwMuw4EdrrnuXQZ3pQAEAy7DgTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTA5MDQxNjI0WhcNMjUwNTA0MDQxNjI0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMA8ab6_Aa9jtfZEbQhBCPjBV-o8Z0xSV__xQC-lEt8Xn3KQneUs5IqLpgkIdW_PmRmZgf9O3QtLrYQz4NkhhcPQHpvhFEyizgKuAWbtaaT-WCIlji8blwOeehO8H-pOBg5pTzxB40nWTCm6X5rEcdHeQQG9lS5k51Zs8YrHcIXzTIcEk7shCyfsQOc1YIY_qabYyds2eLX9-CYW19DTtGvBAp8IPRdgc-Nq_pE3woawRmK0Jq_8n08e2QdX2HitfXrjL2s_jF6MnJnJ9f4GQf4RE1gGz05Piq2Rh2ii29RNYSy-WCITYNBXzak9041KEz9M6SneGGXuJoHVY1VGJl0CAwEAAaOCBNQwggTQMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBTPJReXvGs99TFNdTjnUtQFkgjUGDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABplggdRJywFMERBxBvU2_xPoBee_16mrzSsOO5fB9KwMH7rqDtYsS7J-1G-JprZzud5QGzhUF4cyTcTON8306PYkppL6bN4caaXnORDi21n0NlxhAkS44sxxYcX5uB8TsBog58g7G8TEDKb1zJMII26A8067ZKxS7BcCCcf0ON5gO9S72fYx0baRVOBJLFsTSemCG31wIirv8zNMtTPFuM4al280ORukXNxST214qZ84V9eNfYGO7O7LYXJWNqLAwUsyeuvfOiJZ6ByzHXRPpg6guBhLQjJfUMTJkLWd-bee5pMjfp8JIvjnZQfW-PtI8KicK6MS85JE9gp1_06zY8&s=vqe6_GZWAlDr1KOuO0NTl8EkuFcJksO9piKQWbhcALLJqHSoVBjMbfQ6Wn6CUAHQwf3O0a3y-f9kod0KsqTooEWL8V1tokeA2USLMWVd8pSmhrWaWcrlfpmC6lZEq84cRj4r2FKhj9E8EMrYDJfaYmi6CpPrENEVuwIsxaC2PTR5DRIQYQy_IMlN5e_-v8K8zb-8onA9d2o4BbYJvZnOo8EKAYjPtDCAnx5YNEzwHfTzsfAcgdTzOHmiMHPo6otieKqX5X-CdRvW_ufEH8QySwB7USQU_CYN9sZxxaTkzJpJVRxCELX80voBiS2x1nAmHaMv2J0Q28hu-GWlaRhsbg&h=q2hsvOwZ7bc_zLimq_SRfYiDyzlxqY4Ku0puc4YvR0s - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:27:19 GMT + - Mon, 04 Nov 2024 03:27:29 GMT expires: - '-1' pragma: @@ -53697,9 +58763,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e6887190-f2fa-49f4-9d4c-c09aebc74c9f + - c0795d22-3a1b-4a43-bad0-fd9cab0ad8c6 + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: B07BFA1945BF4EF199923354833AFEA2 Ref B: MRS211050618019 Ref C: 2024-07-25T11:27:18Z' + - 'Ref A: 8B931D753E4C470C823B3C9DCB812B89 Ref B: MAA201060513027 Ref C: 2024-11-04T03:27:28Z' status: code: 200 message: OK @@ -53717,33 +58785,23 @@ interactions: ParameterSetName: - -n -g --vhub --public-ip-count --sku --tier User-Agent: - - AZURECLI/2.62.0 azsdk-python-core/1.28.0 Python/3.8.10 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.31.0 Python/3.12.7 (Windows-11-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"firewall-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002\",\r\n - \ \"etag\": \"W/\\\"d7f0fd7f-3b91-4bf9-977b-ac637d8790c0\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": - \"AZFW_Hub\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"additionalProperties\": - {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualHubs/vhub-000008\"\r\n - \ },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.132\",\r\n - \ \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": - \"104.40.84.92\"\r\n },\r\n {\r\n \"address\": - \"104.42.142.71\"\r\n }\r\n ],\r\n \"count\": 2\r\n - \ }\r\n }\r\n }\r\n}" + string: '{"name":"firewall-000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/azureFirewalls/firewall-000002","etag":"W/\"48c194f1-62e4-4966-a1a5-ce974702efec\"","type":"Microsoft.Network/azureFirewalls","location":"westus","properties":{"provisioningState":"Succeeded","sku":{"name":"AZFW_Hub","tier":"Basic"},"additionalProperties":{},"virtualHub":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_firewall_basic_sku_000001/providers/Microsoft.Network/virtualHubs/vhub-000008"},"hubIPAddresses":{"privateIPAddress":"10.0.0.132","publicIPs":{"addresses":[{"address":"13.64.20.124"},{"address":"40.83.140.86"}],"count":2}}}}' headers: cache-control: - no-cache content-length: - - '994' + - '741' content-type: - application/json; charset=utf-8 date: - - Thu, 25 Jul 2024 11:27:21 GMT + - Mon, 04 Nov 2024 03:27:29 GMT etag: - - W/"d7f0fd7f-3b91-4bf9-977b-ac637d8790c0" + - W/"48c194f1-62e4-4966-a1a5-ce974702efec" expires: - '-1' pragma: @@ -53755,9 +58813,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f27f5569-fcbe-4a88-bc3d-4fd7a9422baa + - 98456f73-9277-4e3f-9c1d-d0caf39bbf3b + x-ms-ratelimit-remaining-subscription-global-reads: + - '3749' x-msedge-ref: - - 'Ref A: B6EDDAD574E84FAC8000808AA0439EE8 Ref B: MRS211050618019 Ref C: 2024-07-25T11:27:20Z' + - 'Ref A: FDE0B1F33F1D450A9C316B9375D46900 Ref B: MAA201060513027 Ref C: 2024-11-04T03:27:30Z' status: code: 200 message: OK diff --git a/src/azure-firewall/setup.py b/src/azure-firewall/setup.py index e0caeb4274f..853f25b2fe9 100644 --- a/src/azure-firewall/setup.py +++ b/src/azure-firewall/setup.py @@ -8,7 +8,7 @@ from codecs import open from setuptools import setup, find_packages -VERSION = "1.2.0" +VERSION = "1.2.1" CLASSIFIERS = [ 'Development Status :: 4 - Beta',